6.1.0 • Published 6 years ago

quick-bot v6.1.0

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

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.

6.1.0

6 years ago

6.0.0

6 years ago

5.0.0

6 years ago

4.1.2

6 years ago

4.1.1

6 years ago

4.1.0

6 years ago

4.0.1

6 years ago

4.0.0

6 years ago

2.0.0

6 years ago

1.0.0

6 years ago

0.5.1

6 years ago

0.5.0

6 years ago

0.4.0

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago