Web Dev//framework//Hono

Lightweight web framework designed for edge runtimes. Similar to Express but for serverless environments where there's no full Node.js.


Lightweight web framework designed for edge runtimes. Similar to Express but for serverless environments where there's no full Node.js.

Runs on Cloudflare Workers, Deno, Bun, and also Node.js

Familiar API: app.get('/api/users', handler), app.post('/api/users', handler)

In the Cloudflare stack: Hono lives in functions/api/, Wrangler executes it as a Worker, handling /api/* routes

Serves both frontend (static files) and backend (API + logic) -- in production both travel through the same Worker