Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 1.08 KB

hono.md

File metadata and controls

29 lines (19 loc) · 1.08 KB

Hono

Hono (means flame🔥 in Japanese) is a small, simple, and ultrafast web framework built on Web Standards. It works on any JavaScript runtime: Node.js, Deno, Bun, Cloudflare Workers, Fastly Compute, Vercel, Netlify, AWS Lambda, Lambda@Edge, and more.

Fast, but not only fast.

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

app.get("/", (c) => c.json({ message: "Hello!" }));

export default app;

Read the official Get Started guide.

References:

Recommended packages: