All Projects → BracketByte → DJS-Handler

BracketByte / DJS-Handler

Licence: other
Simple and easy to use Discord.js command and event handler, use this template for your next bot!

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to DJS-Handler

discord-message-handler
Message and command handler for discord.js bots and applications
Stars: ✭ 19 (-9.52%)
Mutual labels:  discord-js, command-handler
command-handler
Discord Bot (w/ Command Handler)
Stars: ✭ 25 (+19.05%)
Mutual labels:  discord-js, command-handler
Fake-Streamer
A Code that allows you to get the "Streaming" Discord Status WITHOUT Streaming!
Stars: ✭ 48 (+128.57%)
Mutual labels:  discord-js, djs
aero-bot
A general purpose discord bot that also functions as the flagship example bot using AeroClient
Stars: ✭ 11 (-47.62%)
Mutual labels:  discord-js, command-handler
DiscordBot-Template
A boilerplate / template for discord.js bots with 100% coverage of Discord API, command handler, error handler based on https://discordjs.guide/
Stars: ✭ 129 (+514.29%)
Mutual labels:  discord-js, command-handler
Luki
[Deprecated] The official repository for Luki the Discord bot
Stars: ✭ 21 (+0%)
Mutual labels:  discord-js, djs
Gyromina
Gyromina, a multipurpose Discord bot with fun + function all in one
Stars: ✭ 97 (+361.9%)
Mutual labels:  discord-js, djs
mikaela
Mikaela is a discord music bot that gives users the ability to store their favorite songs, and create playlists on discord.
Stars: ✭ 19 (-9.52%)
Mutual labels:  discord-js
Welcomer
A welcomer bot for discord written in discord.js v13 very simple to use with code and deployment instructions, contains customizable background and channels per guild.
Stars: ✭ 64 (+204.76%)
Mutual labels:  discord-js
discord-clock
A simple clock script for your bot to show what time it is in your server | Discord.js v13 ready!
Stars: ✭ 29 (+38.1%)
Mutual labels:  discord-js
DiscordBot
Discord bot.
Stars: ✭ 70 (+233.33%)
Mutual labels:  discord-js
zuly
🤖 | Hi, I'm zuly, a brazilian bot! Focused on animes!
Stars: ✭ 45 (+114.29%)
Mutual labels:  discord-js
Commando-guide
Beginner's guide for discord.js-commando.
Stars: ✭ 56 (+166.67%)
Mutual labels:  discord-js
MassDM
MassDM, a bot to mass DM members of a Discord server.
Stars: ✭ 52 (+147.62%)
Mutual labels:  discord-js
discord-dashboard
Example of Discord Oauth2 - Complete with Discord Bot
Stars: ✭ 35 (+66.67%)
Mutual labels:  discord-js
discord-economy-super
Easy and customizable economy module for your Discord bot.
Stars: ✭ 28 (+33.33%)
Mutual labels:  discord-js
System-bot
Moderative and user-friendly discord bot using discord.js
Stars: ✭ 39 (+85.71%)
Mutual labels:  discord-js
slshx
⚔️ Strongly-typed Discord commands on Cloudflare Workers
Stars: ✭ 163 (+676.19%)
Mutual labels:  discord-js
farmr
A web dashboard for monitoring Chia farms. Also supports discord and email notifications.
Stars: ✭ 259 (+1133.33%)
Mutual labels:  discord-js
Hydra
Very Simple Discord Economy Bot
Stars: ✭ 39 (+85.71%)
Mutual labels:  discord-js

Command and Event Handler For Discord.js!

Simple and easy to use command and event handler with useful features.

INFO

! The command handler used in this repository is based on the official discord.js command handler

! Make sure that you have Node.js and NPM installed and up to to date on your system

HOW DO I SETUP MY BOT?

! If you'r hosting the bot on your loca machine create a new file in the root of the directory of the project called .env and write in it TOKEN=your_token_goes_here if not, add the token to your bot environtment variables with the name of TOKEN

! Set your prefix in utils/config.json

! Run npm install in your terminal

HOW DO I START THE BOT?

! If it's not your first time running this bot, run npm run start in your terminal

! Use npm run LocalStart in your terminal if you'r running the bot on a local machine to make use of the .env file

HOW TO ADD NEW COMMANDS?

1 Create a new .js file in the commands folder with the name of your command.

2 Populate the file with the code reprezented here:

module.exports = {
  name: "commanad name",
  description: "description of your command",
  aliases: ["aleas1", "alias2"],
  usage: "[argument1] [argument2]",
  guildOnly: false, //true if only used in server
  args: false, //true if the command cant run without arguments
  permissions: {
    bot: [], //permissions that the bot requires for the command
    user: [], //permissions that the user requires for the command
  },
  execute: async (message, args, client) => {
    //code for the command goes here
  },
};

3 start your bot and see if it works!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].