A Discord bot framework with some discord.js utilities included.
npm i quick-bot
or
yarn add quick-bot
const {Bot} = require('quick-bot');
const client = new Bot('!', {})
.addCommand('ping', (client, message, config) => {
message.channel.send('Pong!');
})
.build()
.login('TOKEN HERE');
Will make a bot that responds to !ping
with Pong!
. Easy!
The full documentation can be found here.