fd-discord
v1.2.4
Published
Simple lightweight package to create Discord bots with voice support
Maintainers
Readme
fd-discord
Simple light package for create discord bot
Installation
npm i fd-discordexample of use
const bot = new (await require("fd-discord"))({
token: TOKEN,
})
bot.on("READY", function(){
// return user obj and session_id
console.log(this.user);
})
// log messages
bot.on("MESSAGE_CREATE", console.log)