DEV Community

Alex Spinov
Alex Spinov

Posted on

Hono Has a Free API That Runs on Every JavaScript Runtime With Express-Like Syntax

Hono: 14KB web framework for every runtime. Express syntax, edge-native, RPC for end-to-end type safety.

import { Hono } from 'hono'
const app = new Hono()
app.get('/api/:id', (c) => c.json({ id: c.req.param('id') }))
export default app
Enter fullscreen mode Exit fullscreen mode

Runs on Cloudflare Workers, Deno, Bun, Node, Vercel, Lambda. Fastest in benchmarks.


Need to automate data collection or build custom scrapers? Check out my Apify actors for ready-made tools, or email spinov001@gmail.com for custom solutions.

Top comments (0)