Skip to content

discord-handler: Simplify Discord bot development with command and event handling.

License

Notifications You must be signed in to change notification settings

Aidan-The-Dev/handlercord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

handlercord

License npm Version

Simplify your Discord bot development with the handlercord package. This package provides a streamlined way to manage commands, events, and interactions for your Discord bot, making it easier to create and maintain a feature-rich bot.

Features

  • Easy command and event handling.
  • Customizable event system.
  • Simplified interaction handling.
  • Error handling and logging.

Installation

You can install handlercord via npm:

npm install handlercord

Getting Started

Check out the documentation for detailed usage instructions and examples to get started quickly.

Usage

Here's a simple example of how to use handlercord to create a basic Discord bot:

const { Client, Intents } = require('discord.js')
const Handler = require('handlercord')
const path = require('path')

const client = new Client({
    intents: [
        Intents.FLAGS.GUILDS,
        Intents.FLAGS.GUILD_MESSAGES,
    ],
})
const handler = new Handler({
  client,
  commandsPath: path.join(__dirname, 'commands'),
  eventsPath: path.join(__dirname, 'events'),
})

handler.start()
client.login('YOUR_BOT_TOKEN')

ping.js

To create a command make a new file in your commands folder.

module.exports = {
    data:
    {
        name: 'ping',
        description: 'Pong!'
    },
  
    execute: ({ interaction }) => {
      interaction.reply('Pong!')
    },
  }

ready.js

To create an event make a new file in your events folder

module.exports = (client) => {
    client.once('ready', () => {
        console.log(`${client.user.tag} is online.`)
    client.user.setActivity('handlercord', {type: 'PLAYING'})
    })
  }

License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.

About

discord-handler: Simplify Discord bot development with command and event handling.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published