TanStack Start
The full-stack React framework Kavel's web app is built on: file-based routing, server functions, and SSR, all running on the Cloudflare edge.
Why it's here
We picked TanStack Start because it is TypeScript-first, runs natively on Workers, and never locks you to a single host. You write React, and routing, data loading, and server code live in the same typed project.
What to know
- Routes are files under
apps/web/src/routes. The route tree is generated, so adding a file adds a route. - Server-only work goes in server functions, so secrets and data access never ship to the browser.
- Pages are server-rendered and then hydrated, so the first paint is real HTML.
Full documentation lives at tanstack.com/start.