Skip to content

iDrizzle/mrlvn.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mrlvn.js

A lightweight, modular, and scalable framework built on top of discord.js — making your bot development faster and cleaner. So you can focus on featured.

NPM Version NPM Downloaded License Node Version


✨ Features

  • 🔥 Easy to use
  • 🔎 Automatic command discovery
  • 🖨️ Middleware-like hooks for - pre/post-processing
  • 📁 Supports command folder structure
  • ✨ Lightweight, no external runtime dependencies

📦 Installation

npm install mrlvn.js discord.js

Make sure you're using discord.js v14 latest and Node.js 22.12.0 or newer


🚀 Quick Start

const { Client, GatewayIntentBits } = require("discord.js");
const client = new Client({
    intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages],
});

new Framework({
    client,
    commandsPath: "./commands",
    eventsPath: "./events",
});

client.login("YourBotToken");

📄 License

MIT © iMrlvn


🤝 Contributing

Pull requests and issues are welcome! Please open an issue first to discuss major changes.

About

A library that makes it easy to handle commands and events using discord.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors