Socket
Socket
Sign inDemoInstall

erine

Package Overview
Dependencies
27
Maintainers
2
Versions
72
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    erine

A powerful discord.js-based command framework to create Discord bots with ease.


Version published
Weekly downloads
111
increased by65.67%
Maintainers
2
Created
Weekly downloads
 

Readme

Source

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.

Keywords

FAQs

Last updated on 29 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc