0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 02:27:49 +01:00
Web Framework built on Web Standards https://hono.dev/
Go to file
2024-06-21 16:34:29 +09:00
.devcontainer chore: use official deno installer (#2250) 2024-02-22 11:33:14 +09:00
.github ci: use env for codecov GitHub Actions (#3010) 2024-06-21 16:34:29 +09:00
.vitest.config ci: Report coverage with CodeCov (#2862) 2024-06-01 04:17:47 +09:00
.vscode refactor: body parser (#2045) 2024-01-21 06:17:48 +09:00
benchmarks chore(deno): change path including deno_dist (#2788) 2024-05-26 04:41:48 +09:00
docs docs: update readme and migrate guide for migrating deno.land/x to JSR (#2879) 2024-06-01 06:15:49 +09:00
runtime_tests fix(aws-lambda): handle multiple cookies in streaming responses (#2926) 2024-06-12 19:25:37 +09:00
src fix(jsx): add an explicit type (#3007) 2024-06-21 15:45:31 +09:00
.eslintignore chore(eslint): enable @typescript-eslint/unbound-method (#2622) 2024-05-06 17:38:34 +09:00
.eslintrc.cjs chore(eslint): enable @typescript-eslint/unbound-method (#2622) 2024-05-06 17:38:34 +09:00
.gitignore chore: use Bun as a package manager (#2105) 2024-01-29 23:27:54 +09:00
.gitpod.yml chore: create .gitpod.yml (#2868) 2024-06-04 17:17:07 +09:00
.prettierrc
build.ts
bun.lockb chore: update lockfile 2024-06-03 20:44:42 +09:00
bunfig.toml chore: use Bun as a package manager (#2105) 2024-01-29 23:27:54 +09:00
codecov.yml ci: Report coverage with CodeCov (#2862) 2024-06-01 04:17:47 +09:00
jsr.json docs(readme): update readme and jsr.json (#2803) 2024-05-26 23:12:21 +09:00
LICENSE
package.cjs.json
package.json v4.4.7 2024-06-19 15:24:23 +09:00
README.md chore: add coverage badge to README (#2881) 2024-06-02 17:33:55 +09:00
tsconfig.build.json chore(vitest/tsconfig): bump vitest and update tsconfig.build.json (#1851) 2023-12-25 11:46:37 +09:00
tsconfig.json feat(http-exception): Add a "cause" option to HTTPException (#2224) 2024-02-25 19:07:33 +09:00
vitest.config.ts chore: add text and html for coverage reporter (#2923) 2024-06-06 22:25:38 +09:00
yarn.lock test(workerd): add tests for WebSocket (#2891) 2024-06-03 00:14:11 +09:00


Documentation 👉 hono.dev
Now supports JSR and deno.land/x is deprecated! See Migration guide.


GitHub Workflow Status GitHub npm npm JSR Bundle Size Bundle Size GitHub commit activity GitHub last commit codecov Discord badge

Hono - [炎] means flame🔥 in Japanese - is a small, simple, and ultrafast web framework for the Edges. It works on any JavaScript runtime: Cloudflare Workers, Fastly Compute, Deno, Bun, Vercel, AWS Lambda, Lambda@Edge, and Node.js.

Fast, but not only fast.

import { Hono } from 'hono'
const app = new Hono()

app.get('/', (c) => c.text('Hono!'))

export default app

Quick Start

npm create hono@latest

Features

  • Ultrafast 🚀 - The router RegExpRouter is really fast. Not using linear loops. Fast.
  • Lightweight 🪶 - The hono/tiny preset is under 13kB. Hono has zero dependencies and uses only the Web Standard API.
  • Multi-runtime 🌍 - Works on Cloudflare Workers, Fastly Compute, Deno, Bun, AWS Lambda, Lambda@Edge, or Node.js. The same code runs on all platforms.
  • Batteries Included 🔋 - Hono has built-in middleware, custom middleware, and third-party middleware. Batteries included.
  • Delightful DX 😃 - Super clean APIs. First-class TypeScript support. Now, we've got "Types".

Documentation

The documentation is available on hono.dev.

Migration

The migration guide is available on docs/MIGRATION.md.

Communication

Twitter and Discord channel are available.

Contributing

Contributions Welcome! You can contribute in the following ways.

  • Create an Issue - Propose a new feature. Report a bug.
  • Pull Request - Fix a bug and typo. Refactor the code.
  • Create third-party middleware - Instruct below.
  • Share - Share your thoughts on the Blog, Twitter, and others.
  • Make your application - Please try to use Hono.

For more details, see docs/CONTRIBUTING.md.

Contributors

Thanks to all contributors!

Authors

Yusuke Wada https://github.com/yusukebe

RegExpRouter, SmartRouter, LinearRouter, and PatternRouter are created by Taku Amano https://github.com/usualoma

License

Distributed under the MIT License. See LICENSE for more information.