Skip to content

A discord bot framework with some discord.js utilities included.

License

Notifications You must be signed in to change notification settings

kierajreed/quick-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

A discord bot framework with some discord.js utilities included.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published