discertjs
v0.1.21
Published
API wrapper for Discert
Readme
DiscertJS
DiscertJS is a node.js wrapper for the Discert api
Initialize
Install the module with npm i discertjs
Add these lines of code to the top of your js file:
const Discert = require('discertjs')
const Client = new Discert.client({token: 'your api token', botID: "your bot's id"})Example
Get bot name and description
const Discert = require('discertjs')
const Client = new Discert.client({token: 'your api token', botID: "your bot's id"})
var bot = Client.getBot("optional: id")
console.log(bot.username + ' : ' + bot.shortDescription)