Loading...
Loading...
Hono ultrafast web framework for edge computing. Use for edge APIs.
npx skill4agent add g1joshi/agent-skills honoRegExpRouterimport { 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;RequestResponseawait next()fs