Hono Web Framework

4.12.14 · active · verified Sat Apr 18

Hono is a small, simple, and ultrafast web framework built entirely on Web Standards. It supports a wide range of JavaScript runtimes including Cloudflare Workers, Fastly Compute, Deno, Bun, Vercel, AWS Lambda, Lambda@Edge, and Node.js. The current stable version is 4.12.14, with frequent patch releases addressing bug fixes and security vulnerabilities.

Common errors

Warnings

Install

Imports

Quickstart

A minimal Hono application that responds with 'Hono!' for requests to the root path.

import { Hono } from 'hono'

const app = new Hono()

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

export default app

view raw JSON →