quick-bot
v6.1.0
Published
A Discord bot framework with some utilities included.
Downloads
0
Readme
quick-bot
A Discord bot framework with some discord.js utilities included.
Installation
npm i quick-bot
or
yarn add quick-bot
Usage
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.