https://github.com/donatto22/ax-handler
Simple handler for Discord commands, slash commands and events
https://github.com/donatto22/ax-handler
discord discordjs-v13 discordjs-v14 events-handling slash-commands-handler
Last synced: 4 months ago
JSON representation
Simple handler for Discord commands, slash commands and events
- Host: GitHub
- URL: https://github.com/donatto22/ax-handler
- Owner: donatto22
- License: apache-2.0
- Created: 2022-08-06T06:11:55.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-08T03:54:34.000Z (almost 3 years ago)
- Last Synced: 2025-01-08T10:08:52.475Z (5 months ago)
- Topics: discord, discordjs-v13, discordjs-v14, events-handling, slash-commands-handler
- Language: JavaScript
- Homepage: https://npmjs.com/ax-handler
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Ax `Discord` Handler
An easy way to make an event and command handler on discord```js
const handler = require('ax-handler')
```## Use example
You only need one function to handler your slash commands and events```js
// The first parameter, is the discord client
// Second parameter, is the path of your folder
handler.eventhandler(client, path.join(__dirname, 'events'))
``````js
// The first parameter is the path of the folder
// Second parameter is the collection of slash commands
// If you have subfolders, set the third parameter on true
client.slashcommands = new Collection()
handler.slashhandler(path.join(__dirname, 'slashcmd'), client.slashcommands, true)
```### Output
```mkd
> Bot is ready
> Slashcommands loaded successfully
```### What do I need?
- First, the name you put in handler has to be the same as the name of your folder
- Second, for event and slash handler you need a **run** function### Example
```js
// ----------------------------
// Slash command
// ----------------------------// folder / subfolder / file
// slashcmd / util/ ping.js
const { SlashCommandBuilder } = require('@discordjs/builders')module.exports = {
data: new SlashCommandBuilder().setName('ping'),async run (client, interaction) {
// code
}
}
``````js
// ----------------------------
// Event Ready
// ----------------------------// folder / file
// events / ready.js
const { ActivityType, Client, Message } = require('discord.js')module.exports = {
name: 'ready',async run (client, message) {
client.user?.setPresence({
activities: [{
name: 'Using ax-handler',
type: ActivityType.Playing
}]
})
}
}
```### Events Structure
### Slashcommands Structure
> This is the structure of the bot ToxicDoll
[ToxicDoll Bot](https://discord.com/api/oauth2/authorize?client_id=962044667690623067&permissions=8&scope=bot%20applications.commands)