TanStack
In this guide, you will create a new TanStack Start ↗ application and deploy it to Cloudflare Workers (with the new Workers Assets).
Start by cloning the Cloudflare example from the official TanStack repository.
npx gitpick TanStack/router/tree/main/examples/react/start-basic-cloudflare my-tanstack-app
yarn dlx gitpick TanStack/router/tree/main/examples/react/start-basic-cloudflare my-tanstack-app
pnpx gitpick TanStack/router/tree/main/examples/react/start-basic-cloudflare my-tanstack-app
After setting up your project, change your directory by running the following command:
cd my-tanstack-app
And install the project's dependencies with:
npm install
yarn install
pnpm install
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 dev
yarn run dev
pnpm run dev
Your project can be deployed to a *.workers.dev
subdomain or a Custom Domain, from your own machine or from any CI/CD system, including Cloudflare's own.
To deploy your application you will first need to build it:
npm run build
yarn run build
pnpm run build
Once it's been built you can deploy it via:
npm run deploy
yarn run deploy
pnpm run deploy
If you're using CI, ensure you update your "deploy command" configuration appropriately.
Your 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() { // ...}
See src/routes/index.tsx
for an example.
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