A NodeJS wrapper for interfacing with Tatsu's API.
npm install --save tatsu
const { Tatsu } = require('tatsu');
// Replace API_KEY with your Tatsu API key.
const client = new Tatsu("API_KEY");
// Get the Guild Rankings of Tatsu's Lounge
client.getGuildRankings('173184118492889089').then(rankings => {
console.log(rankings);
});
Tatsu's developer portal contains very detailed information on how their API works, as well as which other libraries are available.
Tatsu's API channel (#api) is the best place to get support. Ping me (@TheEvilSocks#0023) for library support.
Please read the the LICENSE file.