djs-embed-builder

1.2.8 • Public • Published

djs-embed-builder


Usage

const { Client } = require('discord.js');
const djs = require(`djs-embed-builder`);
const client = new Client();
client.embed = new djs(client).createEmbed

client.on("interactionCreate", (client, interaction) => {
    if (interaction.commandName == "embed") {
        client.embed(interaction);
    };
});

client.on("messageCreate", (client, message) => {
    let prefix = "+";
    let args = message.content.slice(prefix.length).trim().split(/ +/g);
    let command = args.shift().toLowerCase();
    if (command == "embed") {
        client.embed(message);
    };
});

Dependencies

Examples

To see examples go to examples.js

It's about 120% easy to use though.

Contact

Read Me Made by IceyyM8

Package Sidebar

Install

npm i djs-embed-builder

Weekly Downloads

2

Version

1.2.8

License

MIT

Unpacked Size

23 kB

Total Files

6

Last publish

Collaborators

  • plutothedev