hello-hono Workers
Smallest Worker + request.cf metadata — source on GitHub 𝕏 Share
src/index.ts
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => c.text('Hello from Hono on Cloudflare Workers!'))
app.get('/json', (c) =>
c.json({
framework: 'hono',
runtime: 'cloudflare-workers',
})
)
app.get('/where', (c) => {
const cf = c.req.raw.cf
return c.json({
colo: cf?.colo,
country: cf?.country,
city: cf?.city,
})
})
export default app
Try it — requests go to a Dynamic Worker running this code. State is isolated per browser session and expires after a while.![response]()
response will appear here