with one click
hono
Hono ultrafast web framework for edge computing. Use for edge APIs.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Hono ultrafast web framework for edge computing. Use for edge APIs.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Android Studio IDE with emulator and profiler. Use for Android development.
Atom hackable text editor from GitHub. Use for extensible editing.
Babel JavaScript compiler for compatibility. Use for transpiling.
Biome fast formatter and linter. Use for code quality.
Bitbucket Git repository hosting with Pipelines. Use for Atlassian teams.
Confluence team documentation platform. Use for documentation.
Based on SOC occupation classification
| name | hono |
| description | Hono ultrafast web framework for edge computing. Use for edge APIs. |
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.
RegExpRouter, making it significantly faster than Express.import { Hono } from "hono";
const app = new Hono();
app.get("/", (c) => c.text("Hello Hono!"));
app.get("/user/:name", (c) => {
const name = c.req.param("name");
return c.json({ message: `Hello ${name}!` });
});
export default app;
Hono uses standard Request and Response objects. No proprietary API wrapper.
Similar to Express but await next(). Batteries included: CORS, JWT, Basic Auth, Cache.
Share types between client and server for end-to-end type safety without GraphQL.
Do:
Don't:
fs or native Node modules.