Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:8
forks:2
updated:February 10, 2026 at 17:05
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| 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.