Socket
Socket
Sign inDemoInstall

discordx

Package Overview
Dependencies
2
Maintainers
1
Versions
616
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

discordx


Version published
Weekly downloads
1.2K
decreased by-47.44%
Maintainers
1
Created
Weekly downloads
Ā 

Readme

Source

Why discordx?

For @typeit/discord, we have created fixes and new features. Likewise, We have also requested our fixes and new features on original package at OwenCalvin/discord.ts/pull/62.

But with discordx we intend to provide latest upto date package to build bots with many features, such as multi-bot, simple commands, etc.

āš ļø This package is updated daily with discord.js v13 updates. If you are using this package, make sure you keep it up to date.

If you have any issues or feature requests, Open an issue at Github click here

New features

  • added multiple bot support
  • added new interactions: @Button @SelectMenu
  • added @Command to support v4 commands
  • added new decorator @DefaultPermission
  • add new init slash method
  • Code improved with lint
  • added more example for new decorators

Package

Maintained by @oceanroleplay

Package by @OwenCalvin





discord.ts (discordx or @typeit/discord)

Create your discord bot by using TypeScript and decorators!


šŸŽ» Introduction

This module is an extension of discord.js, so the internal behavior (methods, properties, ...) is the same.

This library allows you to use TypeScript decorators on discord.js, it simplify your code and improve the readability !

šŸ“œ Documentation

https://oceanroleplay.github.io/discord.ts/

šŸ“Ÿ @Slash - Discord commands

Discord has it's own command system now, you can simply declare commands and use Slash commands this way

import { Discord, Slash } from "discordx";
import { CommandInteraction } from "discord.js";

@Discord()
abstract class AppDiscord {
  @Slash("hello")
  private hello(
    @Option("text")
    text: string,
    interaction: CommandInteraction
  ) {
    // ...
  }
}

There is a whole system that allows you to implement complex Slash commands

  • @Choice
  • @Choices
  • @Option
  • @Permission
  • @Guild
  • @Group
  • @Description
  • @Guard

šŸ’”@On / @Once - Discord events

We can declare methods that will be executed whenever a Discord event is triggered.

Our methods must be decorated with the @On(event: string) or @Once(event: string) decorator.

That's simple, when the event is triggered, the method is called:

import { Discord, On, Once } from "discordx";

@Discord()
abstract class AppDiscord {
  @On("messageCreate")
  private onMessage() {
    // ...
  }

  @Once("messageDelete")
  private onMessageDelete() {
    // ...
  }
}

āš”ļø Guards

We implemented a guard system thats work pretty like the Koa middleware system

You can use functions that are executed before your event to determine if it's executed. For example, if you want to apply a prefix to the messages, you can simply use the @Guard decorator.

The order of execution of the guards is done according to their position in the list, so they will be executed in order (from top to bottom).

Guards can be set for @Slash, @On, @Once, @Discord and globaly.

import { Discord, On, Client, Guard } from "discordx";
import { NotBot } from "./NotBot";
import { Prefix } from "./Prefix";

@Discord()
abstract class AppDiscord {
  @On("messageCreate")
  @Guard(
    NotBot, // You can use multiple guard functions, they are excuted in the same order!
    Prefix("!")
  )
  async onMessage([message]: ArgsOf<"messageCreate">) {
    switch (message.content.toLowerCase()) {
      case "hello":
        message.reply("Hello!");
        break;
      default:
        message.reply("Command not found");
        break;
    }
  }
}

šŸ“” Installation

Use npm or yarn to install discordx with discord.js

Please refer to the documentation

ā˜Žļø Need help?

Simply join the Discord server

You can also find help with the examples folder

Thank you

Keywords

FAQs

Last updated on 26 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with āš”ļø by Socket Inc