Getting Started
Erine@latest is a powerful discord.js-based command framework to allow you make bots more easily providing you ready-to-use classes and methods.
Example Setup
const { Erine } = require('erine'); // for TypeScript use: import { Erine } from 'erine';
const bot = new Erine({
intents: ["Guilds"],
prefix: "!"
});
bot.login("TOKEN");
Templates
What you'll need
- Node.JS 16.14 or above.
- Basic JavaScript knowledge is expected.
Are you ready?
Take a look to the next steps, have fun!