Help is a built in help command you can use
import {Client, createCommands, builtin} from "discord-express"const commands = createCommands({ // Your commands help: builtin.help.command,})const client = new Client({ intents: ["GUILD_MESSAGES", "GUILDS"], authToken: process.env.TOKEN,})client.registerCommands(commands, process.env.CLIENT_ID)client.initExpress()client.command("help", builtin.help.handler({commands}))
Generated using TypeDoc
Help is a built in help command you can use