erine
TypeScript icon, indicating that this package has built-in type declarations

2.7.5 • Public • Published

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") // Load commands, interactions and events

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

Versions

Current Tags

Version History

Package Sidebar

Install

npm i erine

Weekly Downloads

9

Version

2.7.5

License

SEE LICENSE IN LICENSE.md

Unpacked Size

78.4 kB

Total Files

43

Last publish

Collaborators

  • asperion
  • midowo