JSPM

@digitaldevgroup/discord-easy

0.3.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q24710F
  • License Apache-2.0

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

Package Exports

  • @digitaldevgroup/discord-easy
  • @digitaldevgroup/discord-easy/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@digitaldevgroup/discord-easy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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 !