Skip to content

This module enables you to easily build a Discord Bot that runs on Cloudflare workers

License

Notifications You must be signed in to change notification settings

luisfun/discord-hono

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔥 Discord Hono npm v Bundle Size

👉 Documentation

This project is heavily influenced by Hono.
Thank you for Yusuke Wada and Hono contributors!

Features

  • Easy Build - Verify included. Code for each command is easier to write.
  • Lightweight - We make them as light as possible. Discord Hono has zero dependencies.
  • TypeScript - TypeScript support.

Install

npm i discord-hono
npm i -D discord-api-types # When using TypeScript

Sample Code

index.ts

import { DiscordHono } from 'discord-hono'

const app = new DiscordHono()
  .command('hello', c => c.res('world!'))

export default app

register.ts

import { Command, register } from 'discord-hono'

const commands = [
  new Command('hello', 'response world'),
]

register(
  commands,
  process.env.DISCORD_APPLICATION_ID,
  process.env.DISCORD_TOKEN,
  //process.env.DISCORD_TEST_GUILD_ID,
)

Examples

References

About

This module enables you to easily build a Discord Bot that runs on Cloudflare workers

Topics

Resources

License

Stars

Watchers

Forks