Erine
A powerful discord.js-based command framework to create Discord bots with ease.
Install
npm install erine@latest
Features
- Hybrid Comands
- Hybrid Groups
- Command / Event / Interaction / Error Handlers
- Plugins
- Discord.py interface
- Prefix Interpreter
- Context base class
- Built-in features (Paginator & Confirmator)
- Built-in customizable HelpCommand
- Built-in arguments parser
Example setup
const { Erine, GatewayIntentBits } = require("erine");
const client = new Erine({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent
],
prefix: "!"
});
client.load("./files")
client.login("TOKEN");
Check the guide for more information.
Disclaimer
Erine is not affiliated or associated with Discord, Discord.js development or any other services.
Links