The website this module is for has shutdown.
The official https://discord.boats API wrapper for Node.js
Simply run npm i boats.js
(or yarn add boats.js
)
Init:
const BoatsClient = require('boats.js');
const Boats = new BoatsClient('API TOKEN', 'API VERSION (optional, either "v1" or "v2")');
Posting Bot Server Count:
Boats.postStats(SERVER_COUNT, 'BOT_ID').then(() => {
console.log('Successfully updated server count.');
}).catch((err) => {
console.error(err);
});
Getting Bot Info:
Boats.getBot('BOT_ID').then((bot) => {
console.log(bot);
}).catch((err) => {
console.error(err);
});
Getting User Info:
Boats.getUser('USER_ID').then((user) => {
console.log(user);
}).catch((err) => {
console.error(err);
});
Checking if a user voted your bot:
Boats.getVoted('BOT_ID', 'USER_ID').then((voted) => {
console.log(voted);
}).catch((err) => {
console.error(err);
});