Package Exports
- hono
- hono/basic-auth
- hono/bearer-auth
- hono/cors
- hono/etag
- hono/html
- hono/jsx
- hono/jwt
- hono/logger
- hono/powered-by
- hono/pretty-json
- hono/router/reg-exp-router
- hono/router/trie-router
- hono/serve-static
- hono/serve-static.bun
- hono/serve-static.module
- hono/utils/body
- hono/utils/buffer
- hono/utils/cloudflare
- hono/utils/cookie
- hono/utils/crypto
- hono/utils/encode
- hono/utils/filepath
- hono/utils/html
- hono/utils/http-status
- hono/utils/jwt
- hono/utils/jwt/index
- hono/utils/jwt/jwt
- hono/utils/jwt/types
- hono/utils/mime
- hono/utils/url
Readme
Documentation 👉 honojs.dev
v2.x has been released! Migration guide
Hono - [炎] means flame🔥 in Japanese - is a small, simple, and ultrafast web framework for Cloudflare Workers, Deno, Bun, and others.
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => c.text('Hono!!'))
export default appFeatures
- Ultrafast - the router does not use linear loops.
- Zero-dependencies - using only Service Worker and Web Standard API.
- Middleware - built-in middleware, custom middleware, and third-party middleware.
- TypeScript - first-class TypeScript support.
- Multi-platform - works on Cloudflare Workers, Fastly Compute@Edge, Deno, or Bun.
Benchmarks
Hono is fastest, compared to other routers for Cloudflare Workers.
hono - trie-router(default) x 389,510 ops/sec ±3.16% (85 runs sampled)
hono - regexp-router x 452,290 ops/sec ±2.64% (84 runs sampled)
itty-router x 206,013 ops/sec ±3.39% (90 runs sampled)
sunder x 323,131 ops/sec ±0.75% (97 runs sampled)
worktop x 191,218 ops/sec ±2.70% (91 runs sampled)
Fastest is hono - regexp-router
✨ Done in 43.56s.Documentation
The documentation is available on honojs.dev.
Migration
Migration guide is available on docs/MIGRATION.md
Contributing
Contributions Welcome! You can contribute in the following ways.
- Fix bugs.
- Create built-in or third-party middleware.
- Propose new feature.
- Refactor the code.
- Write an article about Hono on your Blog.
- Fix a typo.
- etc.
Contributors
Thanks to all contributors! Especially, @metrue and @usualoma!
Author
Yusuke Wada https://github.com/yusukebe
License
Distributed under the MIT License. See LICENSE for more information.