@digitaldevgroup/discord-easy
v0.3.0
Published
Discord-easy is a simple module for simplify discord.js
Downloads
4
Maintainers
Readme
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 !