TanStack Start Adapter
The TanStack Start Adapter in Kiln compiles fullstack React applications built with TanStack Start into standalone native executable binaries.
Supported Features
Section titled “Supported Features”- TanStack Start & Nitro standalone output (
.output/) - Full Server-Side Rendering (SSR) & Streaming
- Server Functions & RPC Data Loading
- Dual Runtime Engines:
default(standard Nitro) andbun-serve(100k+ req/sec zero-copy static asset accelerator).
Configuration
Section titled “Configuration”In your package.json:
"scripts": { "build": "tanstack-start build", "compile": "kiln -o ./bin/app", "build:compile": "tanstack-start build && kiln -o ./bin/app"}Build & Run
Section titled “Build & Run”Run build and compile in one command:
bun run build:compile./bin/appThe application will start on http://0.0.0.0:3000 (or PORT / NITRO_PORT environment variable).
High-Speed bun-serve Engine
Section titled “High-Speed bun-serve Engine”To accelerate static asset delivery in .output/public/ using Bun’s native Zig static dispatcher:
kiln --engine bun-serve -o ./bin/app