discord-mel
v1.8.1
Published
Modulable Discord bot framework
Downloads
24
Readme
Mel Discord bot framework
Modulable Discord bot framework (WIP)
Get started
Use the framework in your dicord bot project:
npm i discord-mel
And then get started with this code:
const { Bot } = require('discord-mel')
const bot = new Bot({
absPath: __dirname,
configFile: 'config.json',
}, {
intents: [],
})
// Start the bot
bot.start()
You'll need to create the config.json
.
See the config.default.json
file as an example.