hono
Installation
SKILL.md
Hono
Hono (Japanese for "Flame") is a small, simple, and ultrafast web framework built on Web Standards. It runs anywhere: Cloudflare Workers, Fastly, Deno, Bun, Node.js, and Vercel.
When to Use
- Edge Computing: Explicitly designed for Cloudflare Workers / Edge runtimes.
- Performance: Uses
RegExpRouter, making it significantly faster than Express. - Single File API: Perfect for small microservices or proxy servers.
Quick Start
import { Hono } from "hono";
const app = new Hono();
app.get("/", (c) => c.text("Hello Hono!"));