Skip to content

matiboux/discord-mel

Repository files navigation

Mel Discord bot framework

npm discord-mel package version npm discord-mel package license

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.