Modmail.js
About
Modmail.js is an advance Discord Modmail template.
- Performant
- Build-in Plugins
- Easy To Setup
- Extendable
Install
npm i modmail.js@latest
Example Usage
const { Modmail, Intents } = require('modmail.js')
(async () => {
try{
const modmail = await Modmail({
token: 'BOT_TOKEN',
inbox: 'INBOX_CHANNEL_ID',
prefix: 'BOT_PREFIX',
clientIntents: ['CLIENT_INTENTS'],
message: '@mentions/messages',
});
console.log(modmail)
}catch(e){
console.log(e)
}
})()