Create a discord bot with 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 simplifies your code and improves the readability!
Version 16.6.0 or newer of Node.js is required
npm install discordx
yarn add discordx
installation guide
one-click installation
๐ Documentation
discordx.js.org
Tutorials (dev.to)
๐ค Bot Examples
discordx-templates (starter repo)
music bot (ytdl)
lavalink bot
Shana from @VictoriqueMoe
๐ก Why discordx?
With discordx
, we intend to provide the latest up-to-date package to easily build feature-rich bots with multi-bot compatibility, simple commands, pagination, music, and much more. Updated daily with discord.js changes.
Try discordx now with CodeSandbox
If you have any issues or feature requests, Please open an issue at GitHub or join discord server
๐ Features
- Support multiple bots in a single nodejs instance (
@Bot
) @SimpleCommand
to use old fashioned command, such as !hello world
@SimpleCommandOption
parse and define command options like @SlashOption
client.initApplicationCommands
to create/update/remove discord application commands- Handler for all discord interactions (slash/button/menu/context)
- Support TSyringe and TypeDI
- Support ECMAScript
๐งฎ Packages
Here are more packages from us to extend the functionality of your Discord bot.
๐ Decorators
There is a whole system that allows you to implement complex slash/simple commands and handle interactions like button, select-menu, context-menu etc.
General
Commands
GUI Interactions
Discord has it's own command system now, you can simply declare commands and use Slash commands this way
@Discord()
class Example {
@Slash({ name: "hello" })
hello(
@SlashOption({ name: "message" }) message: string,
interaction: CommandInteraction
): void {
interaction.reply(`:wave: from ${interaction.user}: ${message}`);
}
}
Create discord button handler with ease!
@Discord()
class Example {
@ButtonComponent({ id: "hello" })
handler(interaction: ButtonInteraction): void {
interaction.reply(":wave:");
}
@ButtonComponent({ id: "hello" })
handler2(interaction: ButtonInteraction): void {
console.log(`${interaction.user} says hello`);
}
@Slash()
test(interaction: CommandInteraction): void {
const btn = new ButtonBuilder()
.setLabel("Hello")
.setStyle(ButtonStyle.Primary)
.setCustomId("hello");
const buttonRow =
new ActionRowBuilder<MessageActionRowComponentBuilder>().addComponents(
btn
);
interaction.reply({
components: [buttonRow],
});
}
}
Create discord select menu handler with ease!
const roles = [
{ label: "Principal", value: "principal" },
{ label: "Teacher", value: "teacher" },
{ label: "Student", value: "student" },
];
@Discord()
class Example {
@SelectMenuComponent({ id: "role-menu" })
async handle(interaction: SelectMenuInteraction): Promise<unknown> {
await interaction.deferReply();
const roleValue = interaction.values?.[0];
if (!roleValue) {
return interaction.followUp("invalid role id, select again");
}
interaction.followUp(
`you have selected role: ${
roles.find((r) => r.value === roleValue)?.label ?? "unknown"
}`
);
return;
}
@Slash({ description: "roles menu", name: "my-roles" })
async myRoles(interaction: CommandInteraction): Promise<unknown> {
await interaction.deferReply();
const menu = new SelectMenuBuilder()
.addOptions(roles)
.setCustomId("role-menu");
const buttonRow =
new ActionRowBuilder<MessageActionRowComponentBuilder>().addComponents(
menu
);
interaction.editReply({
components: [buttonRow],
content: "select your role!",
});
return;
}
}
Create discord context menu options with ease!
@Discord()
class Example {
@ContextMenu({
name: "Hello from discordx",
type: ApplicationCommandType.Message,
})
messageHandler(interaction: MessageContextMenuCommandInteraction): void {
console.log("I am message");
interaction.reply("message interaction works");
}
@ContextMenu({
name: "Hello from discordx",
type: ApplicationCommandType.User,
})
userHandler(interaction: UserContextMenuCommandInteraction): void {
console.log(`Selected user: ${interaction.targetId}`);
interaction.reply("user interaction works");
}
}
Create discord modal with ease!
@Discord()
class Example {
@Slash()
modal(interaction: CommandInteraction): void {
const modal = new ModalBuilder()
.setTitle("My Awesome Form")
.setCustomId("AwesomeForm");
const tvShowInputComponent = new TextInputBuilder()
.setCustomId("tvField")
.setLabel("Favorite TV show")
.setStyle(TextInputStyle.Short);
const haikuInputComponent = new TextInputBuilder()
.setCustomId("haikuField")
.setLabel("Write down your favorite haiku")
.setStyle(TextInputStyle.Paragraph);
const row1 = new ActionRowBuilder<TextInputBuilder>().addComponents(
tvShowInputComponent
);
const row2 = new ActionRowBuilder<TextInputBuilder>().addComponents(
haikuInputComponent
);
modal.addComponents(row1, row2);
interaction.showModal(modal);
}
@ModalComponent()
async AwesomeForm(interaction: ModalSubmitInteraction): Promise<void> {
const [favTVShow, favHaiku] = ["tvField", "haikuField"].map((id) =>
interaction.fields.getTextInputValue(id)
);
await interaction.reply(
`Favorite TV Show: ${favTVShow}, Favorite haiku: ${favHaiku}`
);
return;
}
}
Create a simple command handler for messages using @SimpleCommand
. Example !hello world
@Discord()
class Example {
@SimpleCommand({ aliases: ["hey", "hi"], name: "hello" })
hello(command: SimpleCommandMessage): void {
command.message.reply(":wave:");
}
}
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:
@Discord()
class Example {
@On({ name: "messageCreate" })
messageCreate() {
}
@Once({ name: "messageDelete" })
messageDelete() {
}
}
Create a reaction handler for messages using @Reaction
.
@Discord()
class Example {
@Reaction({ emoji: "โญ", remove: true })
async starReaction(reaction: MessageReaction, user: User): Promise<void> {
await reaction.message.reply(`Received a ${reaction.emoji} from ${user}`);
}
@Reaction({ aliases: ["๐", "custom_emoji"], emoji: "๐" })
async pin(reaction: MessageReaction): Promise<void> {
await reaction.message.pin();
}
}
We implemented a guard system that functions 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 globally.
import { Discord, On, Client, Guard } from "discordx";
import { NotBot } from "./NotBot";
import { Prefix } from "./Prefix";
@Discord()
class Example {
@On()
@Guard(
NotBot
)
messageCreate([message]: ArgsOf<"messageCreate">) {
switch (message.content.toLowerCase()) {
case "hello":
message.reply("Hello!");
break;
default:
message.reply("Command not found");
break;
}
}
}
๐ Documentation
โ๏ธ Need help?
๐ Thank you
You can support discordx by giving it a GitHub star.