discord-express
TypeScript icon, indicating that this package has built-in type declarations

0.0.0-a1 • Public • Published

Discord Express

Node.js CI

DiscordJS reimagined: seamlessly integrate slash and message commands with the pluggable, middleware-based Discord bot framework inspiried by ExpressJS.

Discord-express delivers the promise of "express" in 3 ways:

  1. Express inspiried

    Discord-express is inspiried by Express, so if you have used Express before, you will already be quite familliar.

  2. Expressive

    Write code that's easier to understand with reuseable, pluggable middleware, and an alternative slash command builder that doesn't feel as cluncky and verbose as the default builder.

  3. The express route

    Write DRYer (don't repeat yourself) code and don't WET (write everything twice) yourself! Take advantage of discord-express's seamsless slash and message command integration, and get rid of your boilerplate code.

Never use Discord bot boilerplate template again

Discord-express takes care of that for you, so you can just install and get going with your business instead of trying to figure out someone elses template.

Why?

When slash commands came around, I knew I would eventually have to migrate. But if I wanted to keep message commands around, there was no good way of going about it. I was also getting tired of all the boilerplate needed for a Discord bot. There's tons of elaborate templates on Github just to get a bot started. But if you look at an express app, there isn't nearly as much boilerplate. Why can't there be a solution then?

How?

There is still boilerplate associated with creating a bot. This will get you started.

Requirements: node >= 16.6

More comprehensive examples are available at examples

Javascript:

npm i discord.js discord-express dotenv
yarn add discord.js discord-express dotenv
pnpm add discord.js discord-express dotenv

Typescript:

npm i @types/node
yarn add @types/node
pnpm add @types/node
import {Client, builtins, createCommands, middleware} from "discord-express"
import dotenv from "dotenv"

dotenv.config()

/** @type {import("discord-express").Commands} */
const commands = {
    help: builtins.help.command,
}

const client = new Client({
    intents: ["GUILD_MESSAGES", "GUILDS"],
    authToken: process.env.TOKEN,
})

client.registerCommands(createCommands(commands), process.env.CLIENT_ID)
client.initExpress()

client.use(...middleware.recommended())
client.use(middleware.messageCommandParser({prefix: "~"}))
client.command("help", builtins.help.handler({commands}))

client.on("ready", () => {
    console.log("ready")
})

And that's it! You're ready to get started.

Package Sidebar

Install

npm i discord-express

Weekly Downloads

83

Version

0.0.0-a1

License

MIT

Unpacked Size

484 kB

Total Files

193

Last publish

Collaborators

  • luke-zhang-04