hono-llm-docs
4
总安装量
4
周安装量
#50730
全站排名
安装命令
npx skills add https://github.com/5dlabs/cto --skill hono-llm-docs
Agent 安装分布
claude-code
3
opencode
2
codex
2
antigravity
2
windsurf
1
Skill 文档
Hono LLM Documentation
Hono provides LLM-optimized documentation at multiple levels:
https://hono.dev/llms.txt– Standard docshttps://hono.dev/llms-full.txt– Full documentationhttps://hono.dev/llms-small.txt– Tiny core-only docs
When to Use
Fetch this documentation when:
- Building edge-first APIs with Hono
- Deploying to Cloudflare Workers, Deno, Bun, or other runtimes
- Working with middleware (auth, CORS, JWT, rate limiting)
- Implementing RPC-style APIs with type safety
- Using JSX for server-side rendering
Key Topics Covered
- Core: Hono app, Context, Request, Response, Routing
- Middleware: Basic Auth, Bearer Auth, CORS, CSRF, JWT, Logger
- Helpers: Cookie, HTML, CSS, Streaming, WebSocket, SSG
- Deployment: Cloudflare Workers/Pages, AWS Lambda, Vercel, Deno, Bun
- Concepts: Web Standards, Routers, Middleware, Stacks
Quick Reference
// Fetch Hono docs (choose appropriate size)
const docs = await firecrawl.scrape({
url: "https://hono.dev/llms-full.txt", // or llms.txt, llms-small.txt
formats: ["markdown"]
});
Runtime Support
| Runtime | Status |
|---|---|
| Cloudflare Workers | â Primary |
| Bun | â Supported |
| Deno | â Supported |
| Node.js | â Supported |
| AWS Lambda | â Supported |
| Vercel | â Supported |
Related Skills
bun-llm-docs– Bun runtime documentationelysia-llm-docs– Alternative Bun web framework