cloudflare-demos

static-assets Static Assets

Static files + Worker API routes — source on GitHub

src/index.ts
import { Hono } from 'hono'

const app = new Hono<{ Bindings: Env }>()

app.get('/api/hello', (c) => c.json({ message: 'Hello from the Worker API!' }))

export default app