0.2.0 • Published 3 years ago

discordjs-easiest v0.2.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

Discordjs-easiest

  • Discordjs-easiest is a simple module for simplify Discord.js.

Code exemple:

    const Discord = require("discordjs-easiest");
    const bot = new Discord.Bot();

    bot.setCommandFolder("../../../../commands");
    bot.setEventsFolder("../../../../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 !