hono

Featured

Build ultra-fast web APIs and full-stack apps with Hono — runs on Cloudflare Workers, Deno, Bun, Node.js, and any WinterCG-compatible runtime.

AI & Automation 39,350 stars 6386 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Hono Web Framework ## Overview Hono (炎, "flame" in Japanese) is a small, ultrafast web framework built on Web Standards (`Request`/`Response`/`fetch`). It runs anywhere: Cloudflare Workers, Deno Deploy, Bun, Node.js, AWS Lambda, and any WinterCG-compatible runtime — with the same code. Hono's router is one of the fastest available, and its middleware system, built-in JSX support, and RPC client make it a strong choice for edge APIs, BFFs, and lightweight full-stack apps. ## When to Use This Skill - Use when building a REST or RPC API for edge deployment (Cloudflare Workers, Deno Deploy) - Use when you need a minimal but type-safe server framework for Bun or Node.js - Use when building a Backend for Frontend (BFF) layer with low latency requirements - Use when migrating from Express but wanting better TypeScript support and edge compatibility - Use when the user asks about Hono routing, middleware, `c.req`, `c.json`, or `hc()` RPC client ## How It Works ### Step 1: Project Setup **Cloudflare Workers (recommended for edge):** ```bash npm create hono@latest my-api # Select: cloudflare-workers cd my-api npm install npm run dev # Wrangler local dev npm run deploy # Deploy to Cloudflare ``` **Bun / Node.js:** ```bash mkdir my-api && cd my-api bun init bun add hono ``` ```typescript // src/index.ts (Bun) import { Hono } from 'hono'; const app = new Hono(); app.get('/', c => c.text('Hello Hono!')); export default { port: 3000, fetch: app.fetch, }; ``` ### Step 2...

Details

Author
sickn33
Repository
sickn33/antigravity-awesome-skills
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category