toriapi
v0.2.1
Published
Toribash user stats api module for NodeJS
Downloads
1
Readme
ToriApi
A toribash stats REST api module for NodeJS, created by Pyxel (aka Elite)
Installation
npm install toriapi
or yarn add toriapi
Usage
const ToriApi = require("toriapi");
const Api = new ToriApi();
// Get information on a user
Api.getUser("elite").then(user => {
// do stuff with the user info here
});
Api.getWars("obey", 5).then(wars => {
// do stuff with the clan's wars
});
Api.getWarInfo("12837").then(war => {
// do stuff with the war info
});