better-embed
v1.1.1
Published
To make matter better, this module helps to create richEmbed with Discord.js
Downloads
10
Maintainers
Readme
better-embed
Better Discord embed Module
Author
- khjkr [email protected] (KHJKR#9298)
License
- MIT
Special Thanks
- ZEONPLEX
Installation
npm install better-embed
dependencies
Examples
const bembed = require('better-embed')
const Discord = require('discord.js')
const client = new Discord.Client()
client.on('message', msg => {
if (msg.content === 'bembed') {
const embed = bembed('title', 'author', 'desc', ['names'], ['fildes'], false, '#000')
msg.channel.send(embed)
}
})