Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ikasoba/distroub

utility for discord.js
https://github.com/ikasoba/distroub

Last synced: 15 days ago
JSON representation

utility for discord.js

Awesome Lists containing this project

README

        



@ikasoba000/distroub


Utilities for creating bots in discord.js


npm
npm type definitions

# example

```ts
import { Client, ChatInputCommandInteraction as Interaction } from "discord.js";
import {
DiscordBot,
SlashCommand,
Param,
ParamType,
} from "@ikasoba000/distroub";

const client = new Client( ... );

class MyBot extends DiscordBot {
constructor(client: Client) {
super(client);
}

@ClientEvent("ready")
onReady(){
console.info("Bot activated, bot user: ", this.client.user?.tag);
}

// Create /random command
@SlashCommand("random", "take a random number", [
Param(ParamType("number").optional(), "max", "Upper limit of random number"),
])
async getRandomNumber(interaction: Interaction, max?: number) {
max ??= 10;

await interaction.deferReply();
await interaction.editReply("" + Math.floor(Math.random() * max));
}
}

const bot = new MyBot(client);

await bot.login( ... );
```