0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-21 18:18:57 +01:00
Web Framework built on Web Standards https://hono.dev/
Go to file
Pablo Berganza 267186d65e
fix(serve-static): silence NotFound warning on Deno (#3542)
fix(serve-static): silence `NotFound` warning on Deno
2024-10-22 13:40:07 +09:00
.devcontainer chore: podman support for devcontainer (#3529) 2024-10-20 07:07:22 +09:00
.github ci: use Deno v2 for a test running for deno (#3509) 2024-10-13 16:04:33 +09:00
.vitest.config chore: moving the setup file of vitest (#3157) 2024-07-20 00:02:35 +09:00
.vscode refactor: body parser (#2045) 2024-01-21 06:17:48 +09:00
benchmarks chore: update benchmark (#3102) 2024-07-06 19:25:28 +09:00
build fix(build): remove private fields (#3514) 2024-10-15 17:23:18 +09:00
docs docs: Twitter to X (#3354) 2024-09-01 17:53:56 +09:00
perf-measures fix(types): rm ExcludeEmptyObject to fix massively increased type instantiations (#3507) 2024-10-14 19:44:07 +09:00
runtime-tests test(deno): remove duplicated app.get (#3469) 2024-09-30 15:44:32 +09:00
src fix(serve-static): silence NotFound warning on Deno (#3542) 2024-10-22 13:40:07 +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 chore(prettier): remove markdown-nocjsp parser 2022-07-16 10:03:01 +09:00
bun.lockb chore: update the lockfile 2024-10-15 17:26:19 +09:00
bunfig.toml chore(ci): enable lcov reporter for Bun test (#3022) 2024-06-24 05:39:29 +09:00
codecov.yml ci: Report coverage with CodeCov (#2862) 2024-06-01 04:17:47 +09:00
eslint.config.mjs chore(lint): ESLint v9 (#3393) 2024-09-12 12:05:41 +09:00
jsr.json feat(request): Make request.ts available throught JSR for frameworks that need to instantiate HonoRequest (#3425) 2024-09-24 12:09:54 +09:00
LICENSE chore: update license, contributors as the copyright holders (#769) 2023-01-02 19:18:59 +09:00
package.cjs.json fix(typo): package.cjs.json target to type (#634) 2022-10-29 16:09:32 +09:00
package.json v4.6.5 2024-10-15 17:33:28 +09:00
README.md docs: Twitter to X (#3354) 2024-09-01 17:53:56 +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 fix(build): remove private fields (#3514) 2024-10-15 17:23:18 +09:00
yarn.lock fix(build): remove private fields (#3514) 2024-10-15 17:23:18 +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 built on Web Standards. 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

X 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, X, 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.