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: