Skip to content

Latest commit

 

History

History

README.md

TanStack Start - Cloudflare Example

A TanStack Start example demonstrating deployment to Cloudflare Workers.

Start a new project based on this example

To start a new project based on this example, run:

npx gitpick TanStack/router/tree/main/examples/react/start-basic-cloudflare start-basic-cloudflare

Getting Started

From your terminal:

pnpm install
pnpm dev

This starts your app in development mode, rebuilding assets on file changes.

Build

To build the app for production:

pnpm build

Preview

To preview the production build locally:

pnpm preview

Deploy to Cloudflare

To deploy your app to Cloudflare Workers:

pnpm run deploy

Accessing Cloudflare Bindings

You can access Cloudflare bindings in server functions by using importable env:

import { env } from 'cloudflare:workers'

See src/routes/index.tsx for an example.

Cloudflare Configuration

This example includes:

  • Wrangler configuration for Cloudflare Workers
  • Type generation for Cloudflare bindings
  • Server-side rendering on the edge
  • Access to Cloudflare platform features (KV, D1, R2, etc.)