Launch
TanStack Start with
Launch a new TanStack Start project and you will instantly have access to a development environment. No sign-up required.
Launch a new TanStack Start project and you will instantly have access to a development environment. No sign-up required.
Diploi
Choose some optional add-ons to launch with TanStack Start
Launch a trial, no account needed https://diploi.com/component/tanstack-start
This template provides a minimal setup to get TanStack Start working in Diploi.
Uses the official node Docker image.
Server-side rendering is handled by Nitro, preconfigured through the TanStack Start Vite plugin.
In the Dashboard, click Create Project +
Under Pick Components, choose TanStack Start
You can add other frameworks from this page if you want to build a monorepo application, eg, TanStack Start for the frontend and Hono for the backend.
In Pick Add-ons, select any databases or extra tools you need.
Choose Create Repository so Diploi generates a new GitHub repo for your project.
Click Launch Stack
Supports Bun, Yarn, npm, and pnpm. The package manager is auto-detected from your lockfile (bun.lock, yarn.lock, package-lock.json, or pnpm-lock.yaml). The install and build steps always use the detected package manager.
When the component is first initialized, dependencies are installed using the detected package manager. The development server is then started with:
npm run dev -- --host
This can be changed with the containerCommands.developmentStart field in diploi.yaml.
Builds a production ready image. Image runs npm install & npm run build when being created, using the detected package manager. Once the image runs, npm start is called, which serves the Nitro build from .output/.
This can be changed with the containerCommands.productionStart field in diploi.yaml.
Since Vite replaces environment variables during the build step, the client side code cannot directly access dynamic ENVs in production. You have a few ways to get around this limitation:
diploi.yaml using the static import syntax. The values are exposed to the Dockerfile as ARG variables.diploi.yaml, or configured in the Environment tab), use the recommended way to use runtime ENVs in production for TanStack Start.The component serves on port 5173 in both development and production. If you change it, update all of these so they stay in sync:
hosts[].port in diploi.yamlEXPOSE and ENV PORT in Dockerfile and Dockerfile.devserver.port in vite.config.ts — Vite does not read PORT from the environment on its ownDiploi is the single SaaS service for managing, developing and hosting your full application.