<120ms
Edge-first responses
Astro SSR runs on Cloudflare Workers, with Hono powering API routes under the same deployment.
Astro frontend. Hono backend. One Cloudflare deployment.
This starter runs Astro SSR on Cloudflare Workers and forwards every /api/*
request into Hono. The UI is server-rendered, the form posts to the API, and deployment
stays inside one runtime boundary.
<120ms
Astro SSR runs on Cloudflare Workers, with Hono powering API routes under the same deployment.
1 worker
The UI and JSON endpoints ship together, which keeps local development and deploys predictable.
4 scripts
Install once, develop with Astro, preview with Wrangler, and deploy straight to Cloudflare.
Why this shape works
You get component-driven pages, zero client framework lock-in, and a backend that can grow from a few endpoints into a larger edge API without reworking the deployment target.
output: "server" mode.