0.3.0 • Published 1 year ago

@digitaldevgroup/discord-easy v0.3.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Discordjs-easiest

  • Discord-easy is a simple module for simplify Discord.js.

Code exemple:

    const deasy = require("@digitaldevgroup/discord-easy");
    const bot = new deasy.Bot();

    bot.setCommandFolder("../../../../commands");
    bot.setEventFolder("../../../../events");
    bot.setColor("#ff0000"); // not obligatory
    bot.setFooter("Diseasy Exemple"); // not obligatory
    bot.setBotId("bot id");
    bot.createSlashCommand();
    bot.start("token");

    // then, create commands folder and events folder !
    // for more information, tutorials is soon available !