Formerly known as discord-rose, pronounced jay-dull
Scale clean and hassle-free Discord bots with a simple library catered for advanced developers. Develop with ease and confidence now.
Run npm i --save jadl
You can easily use the SingleWorker
class for easy use of JADL, for scaled solution, look below
./index.js
const { SingleWorker } = require('jadl')
const worker = new SingleWorker({
token: 'BOT TOKEN'
})
You can instead use a Master
& Worker
solution, one master managing multiple workers/clusters, which hold x amount of shards, making it much more efficient.
./master.js
const { Master } = require('jadl')
const path = require('path')
const master = new Master(path.resolve(__dirname, './worker.js'), {
token: 'BOT TOKEN'
})
master.start()
./worker.js
const { Worker } = require('jadl')
const worker = new Worker()
Do node ./master.js
and you're off to the races. Scaled automatically.
Do note if your bot only ever fits into 1 cluster (< 5000 servers by default), you should consider using SingleWorker since master & worker introduce more process overhead
Commands are offloaded to a separate library, you can of course just build your own with the given Discord events, but feel free to checkout @jadl/cmd, a competent super-powered command handler built around decorators (TypeScript only) and slash commands only, made simple and easy to use.
Generated using TypeDoc