Coder Social home page Coder Social logo

donatto22 / ax-handler Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 16 KB

Simple handler for Discord commands, slash commands and events

Home Page: https://npmjs.com/ax-handler

License: Apache License 2.0

JavaScript 100.00%
discord discordjs-v13 discordjs-v14 events-handling slash-commands-handler

ax-handler's Introduction

Ax Discord Handler

An easy way to make an event and command handler on discord

version

const handler = require('ax-handler')

Use example

You only need one function to handler your slash commands and events

// The first parameter, is the discord client
// Second parameter, is the path of your folder
handler.eventhandler(client, path.join(__dirname, 'events'))
// 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

> 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

// ----------------------------
// 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
    }
}
// ----------------------------
// 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

image

Slashcommands Structure

slash structure

This is the structure of the bot ToxicDoll

ToxicDoll Bot

ax-handler's People

Contributors

donatto22 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.