quick-bot
v6.1.0
Published
A Discord bot framework with some utilities included.
Readme
quick-bot
A Discord bot framework with some discord.js utilities included.
Installation
npm i quick-botor
yarn add quick-botUsage
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!
Docs
The full documentation can be found here.
