📄 README.md

← 返回目录

Hono


![GitHub Workflow Status](https://github.com/honojs/hono/actions) ![GitHub](https://github.com/honojs/hono/blob/main/LICENSE) ![npm](https://www.npmjs.com/package/hono) ![npm](https://www.npmjs.com/package/hono) ![JSR](https://jsr.io/@hono/hono) ![Bundle Size](https://bundlephobia.com/result?p=hono) ![Bundle Size](https://bundlephobia.com/result?p=hono) ![GitHub commit activity](https://github.com/honojs/hono/pulse) ![GitHub last commit](https://github.com/honojs/hono/commits/main) ![codecov](https://codecov.io/github/honojs/hono) ![Discord badge](https://discord.gg/KMh2eNSdxV) ![Ask DeepWiki](https://deepwiki.com/honojs/hono)

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.