TanStack Start
TanStack Start ↗ is a full-stack framework for building web applications. It comes with features like server-side rendering, streaming, server functions, bundling, and more. In this guide, you learn to deploy a TanStack Start application to Cloudflare Workers.
If you have an existing TanStack Start application, skip to the Configuring an existing TanStack Start application section.
Use the create-cloudflare ↗ CLI (C3) to set up a new project. C3 will create a new project directory, initiate TanStack Start's official setup tool, and provide the option to deploy instantly.
To use create-cloudflare to create a new TanStack Start project with Workers Assets, run the following command:
npm create cloudflare@latest -- my-tanstack-start-app --framework=tanstack-startyarn create cloudflare my-tanstack-start-app --framework=tanstack-startpnpm create cloudflare@latest my-tanstack-start-app --framework=tanstack-startAfter setting up your project, change your directory by running the following command:
cd my-tanstack-start-appIf you have an existing TanStack Start application, you can configure it to run on Cloudflare Workers by following these steps:
-
Add the
wrangler.jsoncconfiguration file to the root of your project with the following content:{"$schema": "./node_modules/wrangler/config-schema.json","name": "<YOUR_PROJECT_NAME>","compatibility_date": "2025-09-02","compatibility_flags": ["nodejs_compat"],"main": "@tanstack/react-start/server-entry","observability": {"enabled": true}}name = "<YOUR_PROJECT_NAME>"compatibility_date = "2025-09-02"compatibility_flags = ["nodejs_compat"]main = "@tanstack/react-start/server-entry"[observability]enabled = true -
Install
wrangleras a development dependency:Terminal window npm i -D wrangler@latestTerminal window yarn add -D wrangler@latestTerminal window pnpm add -D wrangler@latest -
Install the
@cloudflare/vite-pluginpackage as a dependency:Terminal window npm i @cloudflare/vite-plugin@latestTerminal window yarn add @cloudflare/vite-plugin@latestTerminal window pnpm add @cloudflare/vite-plugin@latest -
Update your
vite.config.tsfile to include the Cloudflare Vite plugin:vite.config.ts import { defineConfig } from "vite";import { cloudflare } from "@cloudflare/vite-plugin";...export default defineConfig({plugins: [cloudflare({ viteEnvironment: { name: 'ssr' } }), ...],// ... other configurations}); -
Update the
scriptssection of yourpackage.jsonfile to include the following commands:package.json "scripts": {..."deploy": "npm run build && wrangler deploy","preview": "npm run build && vite preview","cf-typegen": "wrangler types"}
After you have created your project, run the following command in the project directory to start a local development server. This will allow you to preview your project locally during development.
npm run devyarn run devpnpm run devYou can deploy your project to a *.workers.dev subdomain or a Custom Domain from your own machine or from any CI/CD system, including Cloudflare's own Workers Builds.
The following command will build and deploy your project. If you are using CI, ensure you update your Deploy command configuration appropriately.
npm run deployyarn run deploypnpm run deployYour TanStack Start application can be fully integrated with the Cloudflare Developer Platform, in both local development and in production, by using bindings.
You can use bindings simply by importing the env object ↗ and accessing it in your server
side code.
For example in the following way:
import { createFileRoute } from "@tanstack/react-router";import { createServerFn } from "@tanstack/react-start";import { env } from "cloudflare:workers";
export const Route = createFileRoute("/")({ loader: () => getData(), component: RouteComponent,});
const getData = createServerFn().handler(() => { // Use env here});
function RouteComponent() { // ...}With bindings, your application can be fully integrated with the Cloudflare Developer Platform, giving you access to compute, storage, AI and more.
Was this helpful?
- Resources
- API
- New to Cloudflare?
- Directory
- Sponsorships
- Open Source
- Support
- Help Center
- System Status
- Compliance
- GDPR
- Company
- cloudflare.com
- Our team
- Careers
- © 2025 Cloudflare, Inc.
- Privacy Policy
- Terms of Use
- Report Security Issues
- Trademark
-