┌─────────────────────────────────┐
│  0x1F4BB                        │
│  SYSTEM ONLINE                  │
│  KERNEL: 5.15.0-generic         │
│  UPTIME: 42d 13h 37m             │
│  MEM: 64TB / 128TB              │
└─────────────────────────────────┘
v1.0.0 <alias> stable

npm install @tanstack/start

A type-safe full-stack framework for developers who valueperformanceover convention.

Ctrl+KSearch|?Help

// FEATURES

0x00
stable
Type-safe RPC between client and server with full inference
> no runtime overhead
0x01
stable
Edge-ready with Vercel, Cloudflare, and Node.js adapters
> no runtime overhead
0x02
stable
Hot module replacement that actually works
> no runtime overhead
0x03
beta
File-based routing with zero config
> no runtime overhead
0x04
stable
Built-in state management and data fetching
> no runtime overhead
0x05
alpha
Server components with selective hydration
> no runtime overhead
~ src/routes/index.tsx
import { createFileRoute } from "@tanstack/react-router"

export const Route = createFileRoute("/")({
  loader: async () => {
    const data = await db.query("SELECT * FROM users")
    return { users: data }
  },
  component: ({ loaderData }) => (
    <div>
      {loaderData.users.map(user => (
        <UserCard key={user.id} {...user} />
      ))}
    </div>
  )
})
2^20
Downloads/Week
0x1F4E6
GitHub Stars
Possibilities
Ready to ship?
Press Enter to begin
Start Building