botcord.api
v1.0.2
Published
=============== Welcome to the official BotCord API! =============== ### Setup ```js var Discord = require("discord.js") var Client = new Discord.Client() var botcordapi = require("botcord.api") var botcord = new botcordapi(Client)
Readme
BotCord.API
=============== Welcome to the official BotCord API!
Setup
var Discord = require("discord.js")
var Client = new Discord.Client()
var botcordapi = require("botcord.api")
var botcord = new botcordapi(Client)
Client.authKey = "auth_key_here"
Client.on("ready", () => {
console.log(botcord.postCount())
})
Client.login("token for bot here")