0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 11:17:33 +01:00
hono/deno_dist
2022-07-18 11:56:07 +09:00
..
deno feat: add serve-static middlware for deno (#339) 2022-07-02 23:20:09 +09:00
middleware chore(deno): denoify 2022-07-18 11:56:07 +09:00
router
utils chore: fix typo in error class name (#393) 2022-07-17 08:54:43 +09:00
compose.ts refactor: remove useless async for a better performance on Bun (#397) 2022-07-17 09:13:44 +09:00
context.ts chore(deno): denoify 2022-07-18 11:56:07 +09:00
hono.ts refactor: remove useless async for a better performance on Bun (#397) 2022-07-17 09:13:44 +09:00
LICENSE
middleware.ts chore(deno): denoify 2022-07-16 21:49:59 +09:00
mod.ts refactor(deno): fix a definition of FetchEvent 2022-07-17 18:36:42 +09:00
README.md chore(deno): denoify 2022-07-18 11:56:07 +09:00
request.ts refactor: denoify 2022-07-15 08:40:15 +09:00
router.ts


Documentation 👉 honojs.dev
v2.x has been released! Migration guide


GitHub Workflow Status GitHub npm npm npm type definitions GitHub commit activity GitHub last commit Deno badge

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 app

Features

  • 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.