discord.js-embed
v2.0.0
Published
An easy way to make embeds in discord.js.
Readme
Introduction
discord.js-embed is a very simple package designed to help make discord.js embeds easier.
Installation
To install discord.js-embed, type into the console npm install discord.js-embed. If your package.json does not update, you can manually edit your package.json.
IMPORTANT! Version 2.0.0 supports discord.js 12.x ONLY. For discord.js version 11.3.2 and earlier, please use discord.js-embed v1.0.3.
Documentation
embed(title, description, footer, color, timestamp);
title- the title of the embed (String)descriptionthe description of the embed (String)footerthe footer of the embed (String)colorthe color of the embed (String)timestampwhether or not the embed should have a timestamp (Boolean)
const Discord = require('discord.js')
const client = new Discord.Client();
const Embed = require('discord.js-embed');
const embed = new Embed();
client.on('message', async message => {
let myEmbed = embed.embed("This is an embed!", "This is the description of the embed", "This is the footer of the embed", "#ffffff", true);
message.channel.send({embed: myEmbed});
});If you want to add fields to your embed, you can use the discord.js function addField():
client.on('message', async message => {
let myEmbed = embed.embed("This is an embed!", "This is the description of the embed", "This is the footer of the embed", "#ffffff", true).addField("This is the field name", "This is the field text", true);
message.channel.send({embed: myEmbed});
});