quick-bot

6.1.0 • Public • Published

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.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i quick-bot

    Weekly Downloads

    6

    Version

    6.1.0

    License

    MIT

    Unpacked Size

    5.63 kB

    Total Files

    5

    Last publish

    Collaborators

    • skyhawkb