Skip to content

Improve Discord.js bot with organized Slash Commands, events, and error handling. Use discord.js, Node.js.

License

Notifications You must be signed in to change notification settings

kabirsingh2004/discordjs-base-handler

Repository files navigation

Hi, I'm Kabir! 👋

I'm a Discord Bot Developer and here is mine bot handler

Installation | How to use the Handler

  1. Clone this repository.
  2. Fill in the required details in settings/config.js.
  3. Run npm install to install dependencies.
  4. Start the bot with node index.js.

Modify - config.js

import { Colors } from "discord.js";

const settings = {
  TOKEN: process.env.TOKEN || "BOT_TOKEN",
  PREFIX: process.env.PREFIX || "BOT_PREFIX",
  Owners: ["OwnersId", "OwnersId"],
  Slash: {
    Global: false,
    GuildID: process.env.GuildID || "GUILD_ID",
  },
};

export default settings;

Handler Features

  • Easy-to-use Handler
  • Event handling support
  • Slash commands
  • Message commands
  • Built on discord.js
  • Code snippets for commands
  • Subdirectory support in the commands folder
  • Code suggestions in Handler

Feedback

If you have any feedback or need assistance, please join out Discord Server

Usage/Examples

  • Commands Example

Slash Chat Input Command

import { ApplicationCommandType, PermissionFlagsBits } from "discord.js";

/**
 * @type {import("../../../index.js").Scommand}
 */
export default {
  name: "",
  description: "",
  userPermissions: [PermissionFlagsBits.SendMessages],
  botPermissions: [
    PermissionFlagsBits.SendMessages,
    PermissionFlagsBits.EmbedLinks,
  ],
  category: "",
  type: ApplicationCommandType.ChatInput,

  run: async ({ client, interaction }) => {
    // Code
  },
};

Slash Message Input Command

import { ApplicationCommandType } from "discord.js";

/**
 * @type {import("../../..").CMcommand}
 */
export default {
  name: "",
  category: "",
  type: ApplicationCommandType.Message,

  run: async ({ client, interaction }) => {
    // Code
  },
};

Slash User Input Command

const { ApplicationCommandType } = require("discord.js");

/**
 * @type {import("../../..").CUcommand}
 */
export default {
  name: "",
  category: "",
  type: ApplicationCommandType.User,

  run: async ({ client, interaction }) => {
    // Code
  },
};

Message/Prefix Command

import { PermissionFlagsBits } from "discord.js";

/**
 * @type {import("../../../index.js").Mcommand}
 */
export default {
  name: "",
  description: "",
  userPermissions: [PermissionFlagsBits.SendMessages],
  botPermissions: [
    PermissionFlagsBits.SendMessages,
    PermissionFlagsBits.EmbedLinks,
  ],
  category: "",
  cooldown: 5,

  run: async ({ client, message, args, prefix }) => {
    // Code
  },
};

License

This project is licensed under the MIT License. See the LICENSE file for details.

Acknowledgements

Thank you for considering the use of Kabir's Discord Bot Handler! If you find it helpful, we encourage you to give it a ⭐️.

Contributing

If you encounter any bugs or have suggestions for improvement, please open a pull request. Your contributions are highly appreciated!

Support

For any inquiries or assistance, feel free to reach out to us on our Discord Server.

Happy coding! 🚀