במשך שנים, בחירת framework אינטרנט של JavaScript משמעה הסכמה לפשרה: Express היה אוניברסלי אך איטי וקשור ל-Node, Fastify מהיר אך רק ל-Node, Next.js מלא תכונות אך כבד. כשהגיעו רנטיימי edge — Cloudflare Workers, Deno Deploy, Bun, Vercel Edge — ה-frameworks הללו הראו את הגבולות שלהם.
Hono (יפנית ל"להבה" 🔥) הוא התשובה המודרנית. framework של פחות מ-14KB, בנוי לחלוטין על Web Standards (Request, Response, fetch), שרץ בכל מקום שיש בו רנטיים JavaScript. אותו הקוד מתפרס ל-Cloudflare Workers, Bun, Deno, Node.js, Vercel, Netlify ו-AWS Lambda — ללא שינויים.
למה Hono
- ביצועים. ה-
RegExpRouterממיר את כל תבניות הניתוב ל-regex אחד. בנצ'מרקים עוברים 400,000 ops/שנייה. - ניידות. Web Standards משמע אפס תלויות ב-Node.
- DX TypeScript-first. פרמטרי נתיב נגזרים כטיפוסים literals, לקוח RPC type-safe end-to-end.
התחלה
npm create hono@latest my-api cd my-api npm install npm run dev
// src/index.ts import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => c.text('Hello Hono!')) export default app
על Cloudflare Workers זה מספיק. על Bun: Bun.serve({ fetch: app.fetch, port: 3000 }). על Node: serve({ fetch: app.fetch }) מ-@hono/node-server.
ניתוב
import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => c.text('Home')) app.get('/posts/:id', (c) => { const id = c.req.param('id') return c.json({ id }) }) app.get('/posts/:id/comments/:commentId', (c) => { const { id, commentId } = c.req.param() return c.json({ id, commentId }) }) app.get('/files/*', (c) => c.text('Wildcard')) app.post('/posts', async (c) => { const body = await c.req.json() return c.json({ created: body }, 201) })
קיבוץ נתיבים
// routes/posts.ts import { Hono } from 'hono' const posts = new Hono() posts.get('/', (c) => c.json({ posts: [] })) posts.get('/:id', (c) => c.json({ id: c.req.param('id') })) export default posts // src/index.ts import { Hono } from 'hono' import posts from './routes/posts' const app = new Hono() app.route('/posts', posts)
אובייקט Context
app.post('/echo', async (c) => { const userAgent = c.req.header('User-Agent') const page = c.req.query('page') const body = await c.req.json() const env = c.env c.set('requestId', crypto.randomUUID()) const id = c.get('requestId') c.header('X-Request-Id', id) c.status(200) return c.json({ userAgent, page, body, id }) })
Middleware: מודל הבצל
import { Hono } from 'hono' import { logger } from 'hono/logger' import { cors } from 'hono/cors' import { secureHeaders } from 'hono/secure-headers' const app = new Hono() app.use('*', logger()) app.use('*', secureHeaders()) app.use('/api/*', cors({ origin: 'https://spinny.dev' })) app.use('*', async (c, next) => { const start = performance.now() await next() c.header('X-Response-Time', `${performance.now() - start}ms`) })
Middleware מובנים
| Middleware | תפקיד |
|---|---|
logger | לוגים מובנים של מתודה, נתיב, סטטוס, משך |
cors | CORS ניתן להגדרה לפי origin, מתודות, headers |
csrf | הגנת CSRF מבוססת origin |
secureHeaders | מגדיר CSP, HSTS, X-Frame-Options |
bearerAuth / basicAuth | אימות Bearer/Basic מוכן לשימוש |
jwt | אימות/חתימת JWT עם jose |
etag | מייצר ETag ומטפל ב-304 |
cache | מטמון דרך Web Cache API |
compress | gzip/deflate על תגובה |
bodyLimit | דוחה body מעל סף |
timing | header Server-Timing לפרופילינג |
Middleware מותאם type-safe
import { createMiddleware } from 'hono/factory' type AuthVars = { userId: string; role: 'user' | 'admin' } export const requireAuth = createMiddleware<{ Variables: AuthVars }>( async (c, next) => { const token = c.req.header('Authorization')?.replace('Bearer ', '') if (!token) return c.json({ error: 'Unauthorized' }, 401) const payload = await verifyJwt(token) c.set('userId', payload.sub) c.set('role', payload.role) await next() } ) app.get('/me', requireAuth, (c) => { const userId = c.var.userId return c.json({ userId }) })
אימות עם Zod
import { Hono } from 'hono' import { zValidator } from '@hono/zod-validator' import { z } from 'zod' const createPost = z.object({ title: z.string().min(1).max(200), body: z.string().min(1), tags: z.array(z.string()).default([]), }) app.post( '/posts', zValidator('json', createPost), (c) => { const data = c.req.valid('json') return c.json({ ok: true, post: data }, 201) } )
RPC: לקוח type-safe end-to-end
// server.ts import { Hono } from 'hono' import { zValidator } from '@hono/zod-validator' import { z } from 'zod' const app = new Hono() .get('/posts/:id', (c) => c.json({ id: c.req.param('id'), title: 'Hello' }) ) .post( '/posts', zValidator('json', z.object({ title: z.string(), body: z.string() })), (c) => c.json({ ok: true }, 201) ) export type AppType = typeof app export default app
// client.ts import { hc } from 'hono/client' import type { AppType } from './server' const client = hc<AppType>('https://api.spinny.dev') const res = await client.posts[':id'].$get({ param: { id: '42' } }) if (res.ok) { const data = await res.json() console.log(data.title) } const created = await client.posts.$post({ json: { title: 'שלום', body: 'Hono הוא להבה' }, })
הבחנה לפי קוד סטטוס
.get('/posts/:id', (c) => { const post = findPost(c.req.param('id')) if (!post) return c.json({ error: 'not found' }, 404) return c.json({ post }, 200) })
const res = await client.posts[':id'].$get({ param: { id } }) if (res.status === 404) { const { error } = await res.json() } if (res.status === 200) { const { post } = await res.json() }
Routers וביצועים
| Router | חוזקות | מתי להשתמש |
|---|---|---|
RegExpRouter | מהירות מקסימלית, regex מהודר | ברירת מחדל לרוב ה-APIs |
TrieRouter | תומך בכל התבניות | תבניות מורכבות ש-RegExp לא מטפל |
SmartRouter | בוחר את הטוב ביותר אוטומטית | ברירת מחדל מומלצת |
LinearRouter | רישום מהיר במיוחד | workers חד-פעמיים, cold start קריטי |
PatternRouter | bundle מינימלי (<15KB) | מגבלות גודל קיצוניות |
import { Hono } from 'hono' import { LinearRouter } from 'hono/router/linear-router' const app = new Hono({ router: new LinearRouter() })
פריסה מרובת רנטיים
Cloudflare Workers
import { Hono } from 'hono' type Bindings = { MY_KV: KVNamespace; DB: D1Database } const app = new Hono<{ Bindings: Bindings }>() app.get('/cache/:key', async (c) => { const value = await c.env.MY_KV.get(c.req.param('key')) return c.json({ value }) }) export default app
פריסה: npx wrangler deploy.
Bun
import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => c.text('Bun + Hono')) Bun.serve({ fetch: app.fetch, port: 3000 })
Node.js
import { serve } from '@hono/node-server' import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => c.text('Node + Hono')) serve({ fetch: app.fetch, port: 3000 })
Deno
import { Hono } from 'jsr:@hono/hono' const app = new Hono() app.get('/', (c) => c.text('Deno + Hono')) Deno.serve(app.fetch)
Vercel
// api/[[...route]].ts import { Hono } from 'hono' import { handle } from 'hono/vercel' const app = new Hono().basePath('/api') app.get('/hello', (c) => c.json({ msg: 'Hello from Vercel' })) export const GET = handle(app) export const POST = handle(app)
דוגמה מעשית: REST API עם auth ו-DB
import { Hono } from 'hono' import { jwt } from 'hono/jwt' import { logger } from 'hono/logger' import { cors } from 'hono/cors' import { zValidator } from '@hono/zod-validator' import { z } from 'zod' type Bindings = { DB: D1Database; JWT_SECRET: string } type Variables = { jwtPayload: { sub: string } } const app = new Hono<{ Bindings: Bindings; Variables: Variables }>() app.use('*', logger()) app.use('/api/*', cors({ origin: 'https://spinny.dev', credentials: true })) const auth = (c: any, next: any) => jwt({ secret: c.env.JWT_SECRET })(c, next) const api = app.basePath('/api') api.get('/posts', async (c) => { const { results } = await c.env.DB .prepare('SELECT id, title, created_at FROM posts ORDER BY created_at DESC LIMIT 50') .all() return c.json({ posts: results }) }) api.post( '/posts', auth, zValidator('json', z.object({ title: z.string().min(1).max(200), body: z.string().min(1), })), async (c) => { const { title, body } = c.req.valid('json') const userId = c.var.jwtPayload.sub const result = await c.env.DB .prepare('INSERT INTO posts (title, body, author_id) VALUES (?, ?, ?) RETURNING id') .bind(title, body, userId) .first<{ id: number }>() return c.json({ id: result?.id }, 201) } ) api.onError((err, c) => { console.error(err) return c.json({ error: 'Internal error' }, 500) }) export type AppType = typeof api export default app
בדיקות
import { describe, it, expect } from 'vitest' import app from '../src/index' describe('GET /api/posts', () => { it('מחזיר את רשימת הפוסטים', async () => { const res = await app.request('/api/posts') expect(res.status).toBe(200) const body = await res.json() expect(body.posts).toBeInstanceOf(Array) }) })
שיטות עבודה מומלצות
1. שרשר הגדרות נתיב
const app = new Hono() .get('/posts', handler1) .post('/posts', handler2) .get('/posts/:id', handler3)
2. ייצא את הטיפוס, לא את היישום
הלקוח חייב לייבא AppType.
3. Router אחד לכל דומיין
תת-אפליקציה ל-posts, users, webhooks.
4. אימות בגבול, תמיד
כל קלט חיצוני חייב לעבור דרך zValidator.
5. הסתמך על bindings, לא על לקוחות גלובליים
ב-Cloudflare גישה ל-KV/D1/R2 דרך c.env.
6. מדוד לפני אופטימיזציה של ה-router
ה-SmartRouter הדיפולטיבי מתאים ל-95% מהמקרים.
סיכום
Hono הפך ב-2026 לסטנדרט דה-פקטו לבניית APIs מוכנים ל-edge ב-TypeScript.
רשימת תיוג להתחלה:
npm create hono@latestובחר את תבנית הרנטיים שלך- הגדר נתיבים בשרשור (
.get(...).post(...))- הוסף
logger,cors,secureHeadersכ-middleware גלובלי- אמת כל קלט עם
@hono/zod-validator- ייצא
AppTypeוצרוך את ה-API עם לקוחhctype-safe- כתוב בדיקות עם
app.request()— ללא שרת HTTP- פרוס עם
wrangler deploy(CF),vercel deployאו ה-bundler של הרנטיים שלך