Prodige, get straight to it
Prodige is one of the most advanced command/event handler for Discord bots using discord.js . It has a lots of features that you can discover by reading the documentation. Prodige has an integrated argument handler system that allows you to be sure that your arguments will be as you expect them to be. Prodige also has precise and explicit error messages.
Node.js 14.0.0 or newer is required.
$ npm install prodige
index.js
const { Prodige } = require('prodige');
const { Intents } = require('discord.js');
const client = new Prodige({
intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES],
}).start({
token: 'token',
prefix: ['?', '!'],
});
Having troubles with the documentation? Join our discord server to get help.