bfd.js
v5.0.0
Published
A botsfordiscord.com API wrapper
Downloads
35
Readme
Getting Started
Simply Run npm install bfd.js@latest
Usage
Example of posting a bots servercount to the API
const BFD = require("bfd.js");
const bfd = new BFD('Your Token');
bfd.postStats('your server count', 'your bot id');Example of getting bot info
const BFD = require("bfd.js");
const bfd = new BFD('Your Token');
bfd.getBot('bot-id');
