Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 768 Bytes

README.md

File metadata and controls

34 lines (24 loc) · 768 Bytes

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.