Skip to content

Commit 0c0af97

Browse files
committedFeb 25, 2025·
docs: rename to @tanstack/react-start
1 parent 70a4545 commit 0c0af97

10 files changed

+88
-88
lines changed
 

‎docs/start/framework/react/api-routes.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Here's an example implementation:
4848
import {
4949
createStartAPIHandler,
5050
defaultAPIFileRouteHandler,
51-
} from '@tanstack/start/api'
51+
} from '@tanstack/react-start/api'
5252

5353
export default createStartAPIHandler(defaultAPIFileRouteHandler)
5454
```
@@ -64,7 +64,7 @@ API Routes export an APIRoute instance by calling the `createAPIFileRoute` funct
6464
6565
```ts
6666
// routes/api/hello.ts
67-
import { createAPIFileRoute } from '@tanstack/start/api'
67+
import { createAPIFileRoute } from '@tanstack/react-start/api'
6868

6969
export const APIRoute = createAPIFileRoute('/api/hello')({
7070
GET: async ({ request }) => {
@@ -86,7 +86,7 @@ API Routes support dynamic path parameters, which are denoted by a `$` followed
8686

8787
```ts
8888
// routes/api/users/$id.ts
89-
import { createAPIFileRoute } from '@tanstack/start/api'
89+
import { createAPIFileRoute } from '@tanstack/react-start/api'
9090

9191
export const APIRoute = createAPIFileRoute('/users/$id')({
9292
GET: async ({ params }) => {
@@ -103,7 +103,7 @@ You can also have multiple dynamic path parameters in a single route. For exampl
103103

104104
```ts
105105
// routes/api/users/$id/posts/$postId.ts
106-
import { createAPIFileRoute } from '@tanstack/start/api'
106+
import { createAPIFileRoute } from '@tanstack/react-start/api'
107107

108108
export const APIRoute = createAPIFileRoute('/users/$id/posts/$postId')({
109109
GET: async ({ params }) => {
@@ -122,7 +122,7 @@ API Routes also support wildcard parameters at the end of the path, which are de
122122

123123
```ts
124124
// routes/api/file/$.ts
125-
import { createAPIFileRoute } from '@tanstack/start/api'
125+
import { createAPIFileRoute } from '@tanstack/react-start/api'
126126

127127
export const APIRoute = createAPIFileRoute('/file/$')({
128128
GET: async ({ params }) => {
@@ -141,7 +141,7 @@ To handle POST requests,you can add a `POST` handler to the route object. The ha
141141

142142
```ts
143143
// routes/api/hello.ts
144-
import { createAPIFileRoute } from '@tanstack/start/api'
144+
import { createAPIFileRoute } from '@tanstack/react-start/api'
145145

146146
export const APIRoute = createAPIFileRoute('/api/hello')({
147147
POST: async ({ request }) => {
@@ -166,7 +166,7 @@ When returning JSON using a Response object, this is a common pattern:
166166

167167
```ts
168168
// routes/api/hello.ts
169-
import { createAPIFileRoute } from '@tanstack/start/api'
169+
import { createAPIFileRoute } from '@tanstack/react-start/api'
170170

171171
export const APIRoute = createAPIFileRoute('/api/hello')({
172172
GET: async ({ request }) => {
@@ -188,8 +188,8 @@ Or you can use the `json` helper function to automatically set the `Content-Type
188188

189189
```ts
190190
// routes/api/hello.ts
191-
import { json } from '@tanstack/start'
192-
import { createAPIFileRoute } from '@tanstack/start/api'
191+
import { json } from '@tanstack/react-start'
192+
import { createAPIFileRoute } from '@tanstack/react-start/api'
193193

194194
export const APIRoute = createAPIFileRoute('/api/hello')({
195195
GET: async ({ request }) => {
@@ -209,8 +209,8 @@ You can set the status code of the response by either:
209209

210210
```ts
211211
// routes/api/hello.ts
212-
import { json } from '@tanstack/start'
213-
import { createAPIFileRoute } from '@tanstack/start/api'
212+
import { json } from '@tanstack/react-start'
213+
import { createAPIFileRoute } from '@tanstack/react-start/api'
214214

215215
export const APIRoute = createAPIFileRoute('/users/$id')({
216216
GET: async ({ request, params }) => {
@@ -225,13 +225,13 @@ You can set the status code of the response by either:
225225
})
226226
```
227227

228-
- Using the `setResponseStatus` helper function from `@tanstack/start/server`
228+
- Using the `setResponseStatus` helper function from `@tanstack/react-start/server`
229229

230230
```ts
231231
// routes/api/hello.ts
232-
import { json } from '@tanstack/start'
233-
import { createAPIFileRoute } from '@tanstack/start/api'
234-
import { setResponseStatus } from '@tanstack/start/server'
232+
import { json } from '@tanstack/react-start'
233+
import { createAPIFileRoute } from '@tanstack/react-start/api'
234+
import { setResponseStatus } from '@tanstack/react-start/server'
235235

236236
export const APIRoute = createAPIFileRoute('/users/$id')({
237237
GET: async ({ request, params }) => {
@@ -255,7 +255,7 @@ Sometimes you may need to set headers in the response. You can do this by either
255255

256256
```ts
257257
// routes/api/hello.ts
258-
import { createAPIFileRoute } from '@tanstack/start/api'
258+
import { createAPIFileRoute } from '@tanstack/react-start/api'
259259

260260
export const APIRoute = createAPIFileRoute('/api/hello')({
261261
GET: async ({ request }) => {
@@ -271,12 +271,12 @@ Sometimes you may need to set headers in the response. You can do this by either
271271
// Hello, World!
272272
```
273273

274-
- Or using the `setHeaders` helper function from `@tanstack/start/server`.
274+
- Or using the `setHeaders` helper function from `@tanstack/react-start/server`.
275275

276276
```ts
277277
// routes/api/hello.ts
278-
import { createAPIFileRoute } from '@tanstack/start/api'
279-
import { setHeaders } from '@tanstack/start/server'
278+
import { createAPIFileRoute } from '@tanstack/react-start/api'
279+
import { setHeaders } from '@tanstack/react-start/server'
280280

281281
export const APIRoute = createAPIFileRoute('/api/hello')({
282282
GET: async ({ request }) => {

‎docs/start/framework/react/build-from-scratch.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ TanStack Start is (currently\*) powered by [Vinxi](https://vinxi.vercel.app/) an
5252
To install them, run:
5353

5454
```shell
55-
npm i @tanstack/start @tanstack/react-router vinxi
55+
npm i @tanstack/react-start @tanstack/react-router vinxi
5656
```
5757

5858
You'll also need React and the Vite React plugin, so install them too:
@@ -87,7 +87,7 @@ Then configure TanStack Start's `app.config.ts` file:
8787

8888
```typescript
8989
// app.config.ts
90-
import { defineConfig } from '@tanstack/start/config'
90+
import { defineConfig } from '@tanstack/react-start/config'
9191
import tsConfigPaths from 'vite-tsconfig-paths'
9292

9393
export default defineConfig({
@@ -166,8 +166,8 @@ information to our server entry point:
166166
import {
167167
createStartHandler,
168168
defaultStreamHandler,
169-
} from '@tanstack/start/server'
170-
import { getRouterManifest } from '@tanstack/start/router-manifest'
169+
} from '@tanstack/react-start/server'
170+
import { getRouterManifest } from '@tanstack/react-start/router-manifest'
171171

172172
import { createRouter } from './router'
173173

@@ -188,7 +188,7 @@ router information to our client entry point:
188188
// app/client.tsx
189189
/// <reference types="vinxi/types/client" />
190190
import { hydrateRoot } from 'react-dom/client'
191-
import { StartClient } from '@tanstack/start'
191+
import { StartClient } from '@tanstack/react-start'
192192
import { createRouter } from './router'
193193

194194
const router = createRouter()
@@ -261,7 +261,7 @@ Now that we have the basic templating setup, we can write our first route. This
261261
// app/routes/index.tsx
262262
import * as fs from 'node:fs'
263263
import { createFileRoute, useRouter } from '@tanstack/react-router'
264-
import { createServerFn } from '@tanstack/start'
264+
import { createServerFn } from '@tanstack/react-start'
265265

266266
const filePath = 'count.txt'
267267

‎docs/start/framework/react/hosting.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Set the `server.preset` value to `netlify` in your `app.config.ts` file.
4848

4949
```ts
5050
// app.config.ts
51-
import { defineConfig } from '@tanstack/start/config'
51+
import { defineConfig } from '@tanstack/react-start/config'
5252

5353
export default defineConfig({
5454
server: {
@@ -71,7 +71,7 @@ Deploying your TanStack Start application to Vercel is easy and straightforward.
7171

7272
```ts
7373
// app.config.ts
74-
import { defineConfig } from '@tanstack/start/config'
74+
import { defineConfig } from '@tanstack/react-start/config'
7575

7676
export default defineConfig({
7777
server: {
@@ -106,7 +106,7 @@ Set the `server.preset` value to `cloudflare-pages` and the `server.unenv` value
106106

107107
```ts
108108
// app.config.ts
109-
import { defineConfig } from '@tanstack/start/config'
109+
import { defineConfig } from '@tanstack/react-start/config'
110110
import { cloudflare } from 'unenv'
111111

112112
export default defineConfig({
@@ -135,7 +135,7 @@ Set the `server.preset` value to `node-server` in your `app.config.ts` file.
135135

136136
```ts
137137
// app.config.ts
138-
import { defineConfig } from '@tanstack/start/config'
138+
import { defineConfig } from '@tanstack/react-start/config'
139139

140140
export default defineConfig({
141141
server: {
@@ -175,7 +175,7 @@ Set the `server.preset` value to `bun` in your `app.config.ts` file.
175175

176176
```ts
177177
// app.config.ts
178-
import { defineConfig } from '@tanstack/start/config'
178+
import { defineConfig } from '@tanstack/react-start/config'
179179

180180
export default defineConfig({
181181
server: {

‎docs/start/framework/react/learn-the-basics.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ This is done via the `app/ssr.tsx` file:
5858
import {
5959
createStartHandler,
6060
defaultStreamHandler,
61-
} from '@tanstack/start/server'
62-
import { getRouterManifest } from '@tanstack/start/router-manifest'
61+
} from '@tanstack/react-start/server'
62+
import { getRouterManifest } from '@tanstack/react-start/router-manifest'
6363

6464
import { createRouter } from './router'
6565

@@ -82,7 +82,7 @@ Getting our html to the client is only half the battle. Once there, we need to h
8282
```tsx
8383
// app/client.tsx
8484
import { hydrateRoot } from 'react-dom/client'
85-
import { StartClient } from '@tanstack/start'
85+
import { StartClient } from '@tanstack/react-start'
8686
import { createRouter } from './router'
8787

8888
const router = createRouter()
@@ -165,7 +165,7 @@ Routes are an extensive feature of TanStack Router, and are covered thoroughly i
165165
// app/routes/index.tsx
166166
import * as fs from 'node:fs'
167167
import { createFileRoute, useRouter } from '@tanstack/react-router'
168-
import { createServerFn } from '@tanstack/start'
168+
import { createServerFn } from '@tanstack/react-start'
169169

170170
const filePath = 'count.txt'
171171

@@ -246,7 +246,7 @@ Here's a quick overview of how server functions work:
246246
Here's a quick example of how you can use server functions to fetch and return data from the server:
247247

248248
```tsx
249-
import { createServerFn } from '@tanstack/start'
249+
import { createServerFn } from '@tanstack/react-start'
250250
import * as fs from 'node:fs'
251251
import { z } from 'zod'
252252

@@ -274,7 +274,7 @@ Server Functions can also be used to perform mutations on the server. This is al
274274
Here's a quick example of how you can use server functions to perform a mutation on the server and invalidate the data on the client:
275275

276276
```tsx
277-
import { createServerFn } from '@tanstack/start'
277+
import { createServerFn } from '@tanstack/react-start'
278278

279279
const UserSchema = z.object({
280280
id: z.string(),

‎docs/start/framework/react/middleware.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Middleware allows you to customize the behavior of server functions created with
2222
Middleware is defined using the `createMiddleware` function. This function returns a `Middleware` object that can be used to continue customizing the middleware with methods like `middleware`, `validator`, `server`, and `client`.
2323

2424
```tsx
25-
import { createMiddleware } from '@tanstack/start'
25+
import { createMiddleware } from '@tanstack/react-start'
2626

2727
const loggingMiddleware = createMiddleware().server(async ({ next, data }) => {
2828
console.log('Request received:', data)
@@ -37,7 +37,7 @@ const loggingMiddleware = createMiddleware().server(async ({ next, data }) => {
3737
Once you've defined your middleware, you can use it in combination with the `createServerFn` function to customize the behavior of your server functions.
3838

3939
```tsx
40-
import { createServerFn } from '@tanstack/start'
40+
import { createServerFn } from '@tanstack/react-start'
4141
import { loggingMiddleware } from './middleware'
4242

4343
const fn = createServerFn()
@@ -61,7 +61,7 @@ Several methods are available to customize the middleware. If you are (hopefully
6161
The `middleware` method is used to dependency middleware to the chain that will executed **before** the current middleware. Just call the `middleware` method with an array of middleware objects.
6262

6363
```tsx
64-
import { createMiddleware } from '@tanstack/start'
64+
import { createMiddleware } from '@tanstack/react-start'
6565

6666
const loggingMiddleware = createMiddleware().middleware([
6767
authMiddleware,
@@ -76,7 +76,7 @@ Type-safe context and payload validation are also inherited from parent middlewa
7676
The `validator` method is used to modify the data object before it is passed to this middleware, nested middleware, and ultimately the server function. This method should receive a function that takes the data object and returns a validated (and optionally modified) data object. It's common to use a validation library like `zod` to do this. Here is an example:
7777

7878
```tsx
79-
import { createMiddleware } from '@tanstack/start'
79+
import { createMiddleware } from '@tanstack/react-start'
8080
import { zodValidator } from '@tanstack/zod-adapter'
8181
import { z } from 'zod'
8282

@@ -105,7 +105,7 @@ The `server` method is used to define **server-side** logic that the middleware
105105
The `next` function is used to execute the next middleware in the chain. **You must await and return (or return directly) the result of the `next` function provided to you** for the chain to continue executing.
106106

107107
```tsx
108-
import { createMiddleware } from '@tanstack/start'
108+
import { createMiddleware } from '@tanstack/react-start'
109109

110110
const loggingMiddleware = createMiddleware().server(async ({ next }) => {
111111
console.log('Request received')
@@ -120,7 +120,7 @@ const loggingMiddleware = createMiddleware().server(async ({ next }) => {
120120
The `next` function can be optionally called with an object that has a `context` property with an object value. Whatever properties you pass to this `context` value will be merged into the parent `context` and provided to the next middleware.
121121

122122
```tsx
123-
import { createMiddleware } from '@tanstack/start'
123+
import { createMiddleware } from '@tanstack/react-start'
124124

125125
const awesomeMiddleware = createMiddleware().server(({ next }) => {
126126
return next({
@@ -151,7 +151,7 @@ By default, middleware validation is only performed on the server to keep the cl
151151
> The client-side validation schema is derived from the server-side schema. This is because the client-side validation schema is used to validate the data before it is sent to the server. If the client-side schema were different from the server-side schema, the server would receive data that it did not expect, which could lead to unexpected behavior.
152152
153153
```tsx
154-
import { createMiddleware } from '@tanstack/start'
154+
import { createMiddleware } from '@tanstack/react-start'
155155
import { zodValidator } from '@tanstack/zod-adapter'
156156
import { z } from 'zod'
157157

@@ -302,7 +302,7 @@ Here's how to register global middleware:
302302

303303
```tsx
304304
// app/global-middleware.ts
305-
import { registerGlobalMiddleware } from '@tanstack/start'
305+
import { registerGlobalMiddleware } from '@tanstack/react-start'
306306
import { authMiddleware } from './middleware'
307307

308308
registerGlobalMiddleware({

‎docs/start/framework/react/path-aliases.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Now, you'll need to update your `app.config.ts` file to include the following:
3030

3131
```ts
3232
// app.config.ts
33-
import { defineConfig } from '@tanstack/start/config'
33+
import { defineConfig } from '@tanstack/react-start/config'
3434
import viteTsConfigPaths from 'vite-tsconfig-paths'
3535

3636
export default defineConfig({

‎docs/start/framework/react/server-functions.md

+36-36
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ Server functions can use middleware to share logic, context, common operations,
3838

3939
> We'd like to thank the [tRPC](https://trpc.io/) team for both the inspiration of TanStack Start's server function design and guidance while implementing it. We love (and recommend) using tRPC for API Routes so much that we insisted on server functions getting the same 1st class treatment and developer experience. Thank you!
4040
41-
Server functions are defined with the `createServerFn` function, from the `@tanstack/start` package. This function takes an optional `options` argument for specifying the http verb, and allows you to chain off the result to define things like the body of the server function, input validation, middleware, etc. Here's a simple example:
41+
Server functions are defined with the `createServerFn` function, from the `@tanstack/react-start` package. This function takes an optional `options` argument for specifying the http verb, and allows you to chain off the result to define things like the body of the server function, input validation, middleware, etc. Here's a simple example:
4242

4343
```tsx
4444
// getServerTime.ts
45-
import { createServerFn } from '@tanstack/start'
45+
import { createServerFn } from '@tanstack/react-start'
4646

4747
export const getServerTime = createServerFn().handler(async () => {
4848
// Wait for 1 second
@@ -79,7 +79,7 @@ Server functions accept a single parameter, which can be a variety of types:
7979
Here's an example of a server function that accepts a simple string parameter:
8080

8181
```tsx
82-
import { createServerFn } from '@tanstack/start'
82+
import { createServerFn } from '@tanstack/react-start'
8383

8484
export const greet = createServerFn({
8585
method: 'GET',
@@ -107,7 +107,7 @@ Validators also integrate seamlessly with external validators, if you want to us
107107
Here's a simple example of a server function that validates the input parameter:
108108

109109
```tsx
110-
import { createServerFn } from '@tanstack/start'
110+
import { createServerFn } from '@tanstack/react-start'
111111

112112
type Person = {
113113
name: string
@@ -135,7 +135,7 @@ export const greet = createServerFn({ method: 'GET' })
135135
Validation libraries like Zod can be used like so:
136136

137137
```tsx
138-
import { createServerFn } from '@tanstack/start'
138+
import { createServerFn } from '@tanstack/react-start'
139139

140140
import { z } from 'zod'
141141

@@ -163,7 +163,7 @@ greet({
163163
Since server-functions cross the network boundary, it's important to ensure the data being passed to them is not only the right type, but also validated at runtime. This is especially important when dealing with user input, as it can be unpredictable. To ensure developers validate their I/O data, types are reliant on validation. The return type of the `validator` function will be the input to the server function's handler.
164164

165165
```tsx
166-
import { createServerFn } from '@tanstack/start'
166+
import { createServerFn } from '@tanstack/react-start'
167167

168168
type Person = {
169169
name: string
@@ -202,7 +202,7 @@ Server functions infer their input, and output types based on the input to the `
202202
To illustrate this, let's take a look at an example using the `zod` validation library:
203203

204204
```tsx
205-
import { createServerFn } from '@tanstack/start'
205+
import { createServerFn } from '@tanstack/react-start'
206206
import { z } from 'zod'
207207

208208
const transactionSchema = z.object({
@@ -227,7 +227,7 @@ createTransaction({
227227
While we highly recommend using a validation library to validate your network I/O data, you may, for whatever reason _not_ want to validate your data, but still have type safety. To do this, provide type information to the server function using an identity function as the `validator`, that types the input, and or output to the correct types:
228228

229229
```tsx
230-
import { createServerFn } from '@tanstack/start'
230+
import { createServerFn } from '@tanstack/react-start'
231231

232232
type Person = {
233233
name: string
@@ -251,7 +251,7 @@ greet({
251251
Server functions can accept JSON-serializable objects as parameters. This is useful for passing complex data structures to the server:
252252

253253
```tsx
254-
import { createServerFn } from '@tanstack/start'
254+
import { createServerFn } from '@tanstack/react-start'
255255

256256
type Person = {
257257
name: string
@@ -277,7 +277,7 @@ greet({
277277
Server functions can accept `FormData` objects as parameters
278278

279279
```tsx
280-
import { createServerFn } from '@tanstack/start'
280+
import { createServerFn } from '@tanstack/react-start'
281281

282282
export const greetUser = createServerFn({ method: 'POST' })
283283
.validator((data) => {
@@ -321,7 +321,7 @@ function Test() {
321321

322322
## Server Function Context
323323

324-
In addition to the single parameter that server functions accept, you can also access server request context from within any server function using utilities from `@tanstack/start/server`. Under the hood, we use [Unjs](https://unjs.io/)'s `h3` package to perform cross-platform HTTP requests.
324+
In addition to the single parameter that server functions accept, you can also access server request context from within any server function using utilities from `@tanstack/react-start/server`. Under the hood, we use [Unjs](https://unjs.io/)'s `h3` package to perform cross-platform HTTP requests.
325325

326326
There are many context functions available to you for things like:
327327

@@ -332,7 +332,7 @@ There are many context functions available to you for things like:
332332
- Dealing with multi-part form data
333333
- Reading/Setting custom server context properties
334334

335-
For a full list of available context functions, see all of the available [h3 Methods](https://h3.unjs.io/utils/request) or inspect the [@tanstack/start/server Source Code](https://github.com/tanstack/router/tree/main/packages/start/src/server/index.tsx).
335+
For a full list of available context functions, see all of the available [h3 Methods](https://h3.unjs.io/utils/request) or inspect the [@tanstack/react-start/server Source Code](https://github.com/tanstack/router/tree/main/packages/start/src/server/index.tsx).
336336

337337
For starters, here are a few examples:
338338

@@ -341,8 +341,8 @@ For starters, here are a few examples:
341341
Let's use the `getWebRequest` function to access the request itself from within a server function:
342342

343343
```tsx
344-
import { createServerFn } from '@tanstack/start'
345-
import { getWebRequest } from '@tanstack/start/server'
344+
import { createServerFn } from '@tanstack/react-start'
345+
import { getWebRequest } from '@tanstack/react-start/server'
346346

347347
export const getServerTime = createServerFn({ method: 'GET' }).handler(
348348
async () => {
@@ -360,8 +360,8 @@ export const getServerTime = createServerFn({ method: 'GET' }).handler(
360360
Use the `getHeaders` function to access all headers from within a server function:
361361

362362
```tsx
363-
import { createServerFn } from '@tanstack/start'
364-
import { getHeaders } from '@tanstack/start/server'
363+
import { createServerFn } from '@tanstack/react-start'
364+
import { getHeaders } from '@tanstack/react-start/server'
365365

366366
export const getServerTime = createServerFn({ method: 'GET' }).handler(
367367
async () => {
@@ -381,8 +381,8 @@ export const getServerTime = createServerFn({ method: 'GET' }).handler(
381381
You can also access individual headers using the `getHeader` function:
382382

383383
```tsx
384-
import { createServerFn } from '@tanstack/start'
385-
import { getHeader } from '@tanstack/start/server'
384+
import { createServerFn } from '@tanstack/react-start'
385+
import { getHeader } from '@tanstack/react-start/server'
386386

387387
export const getServerTime = createServerFn({ method: 'GET' }).handler(
388388
async () => {
@@ -406,7 +406,7 @@ Server functions can return a few different types of values:
406406
To return any primitive or JSON-serializable object, simply return the value from the server function:
407407

408408
```tsx
409-
import { createServerFn } from '@tanstack/start'
409+
import { createServerFn } from '@tanstack/react-start'
410410

411411
export const getServerTime = createServerFn({ method: 'GET' }).handler(
412412
async () => {
@@ -430,8 +430,8 @@ By default, server functions assume that any non-Response object returned is eit
430430
To respond with custom headers, you can use the `setHeader` function:
431431

432432
```tsx
433-
import { createServerFn } from '@tanstack/start'
434-
import { setHeader } from '@tanstack/start/server'
433+
import { createServerFn } from '@tanstack/react-start'
434+
import { setHeader } from '@tanstack/react-start/server'
435435

436436
export const getServerTime = createServerFn({ method: 'GET' }).handler(
437437
async () => {
@@ -446,8 +446,8 @@ export const getServerTime = createServerFn({ method: 'GET' }).handler(
446446
To respond with a custom status code, you can use the `setResponseStatus` function:
447447

448448
```tsx
449-
import { createServerFn } from '@tanstack/start'
450-
import { setResponseStatus } from '@tanstack/start/server'
449+
import { createServerFn } from '@tanstack/react-start'
450+
import { setResponseStatus } from '@tanstack/react-start/server'
451451

452452
export const getServerTime = createServerFn({ method: 'GET' }).handler(
453453
async () => {
@@ -462,7 +462,7 @@ export const getServerTime = createServerFn({ method: 'GET' }).handler(
462462
To return a raw Response object, simply return a Response object from the server function:
463463

464464
```tsx
465-
import { createServerFn } from '@tanstack/start'
465+
import { createServerFn } from '@tanstack/react-start'
466466

467467
export const getServerTime = createServerFn({ method: 'GET' }).handler(
468468
async () => {
@@ -477,7 +477,7 @@ export const getServerTime = createServerFn({ method: 'GET' }).handler(
477477
Aside from special `redirect` and `notFound` errors, server functions can throw any custom error. These errors will be serialized and sent to the client as a JSON response along with a 500 status code.
478478

479479
```tsx
480-
import { createServerFn } from '@tanstack/start'
480+
import { createServerFn } from '@tanstack/react-start'
481481

482482
export const doStuff = createServerFn({ method: 'GET' }).handler(async () => {
483483
throw new Error('Something went wrong!')
@@ -503,7 +503,7 @@ On the client, server function calls can be cancelled via an `AbortSignal`.
503503
On the server, an `AbortSignal` will notify if the request closed before execution finished.
504504

505505
```tsx
506-
import { createServerFn } from '@tanstack/start'
506+
import { createServerFn } from '@tanstack/react-start'
507507

508508
export const abortableServerFn = createServerFn().handler(
509509
async ({ signal }) => {
@@ -562,10 +562,10 @@ export const Route = createFileRoute('/time')({
562562

563563
## Calling server functions from hooks and components
564564

565-
Server functions can throw `redirect`s or `notFound`s and while not required, it is recommended to catch these errors and handle them appropriately. To make this easier, the `@tanstack/start` package exports a `useServerFn` hook that can be used to bind server functions to components and hooks:
565+
Server functions can throw `redirect`s or `notFound`s and while not required, it is recommended to catch these errors and handle them appropriately. To make this easier, the `@tanstack/react-start` package exports a `useServerFn` hook that can be used to bind server functions to components and hooks:
566566

567567
```tsx
568-
import { useServerFn } from '@tanstack/start'
568+
import { useServerFn } from '@tanstack/react-start'
569569
import { useQuery } from '@tanstack/react-query'
570570
import { getServerTime } from './getServerTime'
571571

@@ -599,7 +599,7 @@ To throw a redirect, you can use the `redirect` function exported from the `@tan
599599

600600
```tsx
601601
import { redirect } from '@tanstack/react-router'
602-
import { createServerFn } from '@tanstack/start'
602+
import { createServerFn } from '@tanstack/react-start'
603603

604604
export const doStuff = createServerFn({ method: 'GET' }).handler(async () => {
605605
// Redirect the user to the home page
@@ -619,7 +619,7 @@ Redirects can also set the status code of the response by passing a `status` opt
619619

620620
```tsx
621621
import { redirect } from '@tanstack/react-router'
622-
import { createServerFn } from '@tanstack/start'
622+
import { createServerFn } from '@tanstack/react-start'
623623

624624
export const doStuff = createServerFn({ method: 'GET' }).handler(async () => {
625625
// Redirect the user to the home page with a 301 status code
@@ -634,7 +634,7 @@ You can also redirect to an external target using `href`:
634634

635635
```tsx
636636
import { redirect } from '@tanstack/react-router'
637-
import { createServerFn } from '@tanstack/start'
637+
import { createServerFn } from '@tanstack/react-start'
638638

639639
export const auth = createServerFn({ method: 'GET' }).handler(async () => {
640640
// Redirect the user to the auth provider
@@ -644,15 +644,15 @@ export const auth = createServerFn({ method: 'GET' }).handler(async () => {
644644
})
645645
```
646646

647-
> ⚠️ Do not use `@tanstack/start/server`'s `sendRedirect` function to send soft redirects from within server functions. This will send the redirect using the `Location` header and will force a full page hard navigation on the client.
647+
> ⚠️ Do not use `@tanstack/react-start/server`'s `sendRedirect` function to send soft redirects from within server functions. This will send the redirect using the `Location` header and will force a full page hard navigation on the client.
648648
649649
## Redirect Headers
650650

651651
You can also set custom headers on a redirect by passing a `headers` option:
652652

653653
```tsx
654654
import { redirect } from '@tanstack/react-router'
655-
import { createServerFn } from '@tanstack/start'
655+
import { createServerFn } from '@tanstack/react-start'
656656

657657
export const doStuff = createServerFn({ method: 'GET' }).handler(async () => {
658658
// Redirect the user to the home page with a custom header
@@ -673,7 +673,7 @@ To throw a notFound, you can use the `notFound` function exported from the `@tan
673673

674674
```tsx
675675
import { notFound } from '@tanstack/react-router'
676-
import { createServerFn } from '@tanstack/start'
676+
import { createServerFn } from '@tanstack/react-start'
677677

678678
const getStuff = createServerFn({ method: 'GET' }).handler(async () => {
679679
// Randomly return a not found error
@@ -705,7 +705,7 @@ Not found errors are a core feature of TanStack Router,
705705
If a server function throws a (non-redirect/non-notFound) error, it will be serialized and sent to the client as a JSON response along with a 500 status code. This is useful for debugging, but you may want to handle these errors in a more user-friendly way. You can do this by catching the error and handling it in your route lifecycle, component, or hook as you normally would.
706706

707707
```tsx
708-
import { createServerFn } from '@tanstack/start'
708+
import { createServerFn } from '@tanstack/react-start'
709709

710710
export const doStuff = createServerFn({ method: 'GET' }).handler(async () => {
711711
undefined.foo()
@@ -851,7 +851,7 @@ all by telling the browser to reload the current page with new data piped throug
851851
```tsx
852852
import * as fs from 'fs'
853853
import { createFileRoute } from '@tanstack/react-router'
854-
import { createServerFn } from '@tanstack/start'
854+
import { createServerFn } from '@tanstack/react-start'
855855

856856
const filePath = 'count.txt'
857857

‎docs/start/framework/react/ssr.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ TanStack Start supports server-side rendering out of the box. To enable server-s
1515
import {
1616
createStartHandler,
1717
defaultStreamHandler,
18-
} from '@tanstack/start/server'
19-
import { getRouterManifest } from '@tanstack/start/router-manifest'
18+
} from '@tanstack/react-start/server'
19+
import { getRouterManifest } from '@tanstack/react-start/router-manifest'
2020

2121
import { createRouter } from './router'
2222

@@ -26,9 +26,9 @@ export default createStartHandler({
2626
})(defaultStreamHandler)
2727
```
2828

29-
This file exports a function that creates a server-side rendering handler. The handler is created using the `createStartHandler` function from `@tanstack/start/server`, which takes an object with the following properties:
29+
This file exports a function that creates a server-side rendering handler. The handler is created using the `createStartHandler` function from `@tanstack/react-start/server`, which takes an object with the following properties:
3030

3131
- `createRouter`: A function that creates a router for your application. This function should return a new router instance each time it is called.
3232
- `getRouterManifest`: A function that returns a manifest of all the routes in your application.
3333

34-
The handler is then called with the `defaultStreamHandler` function from `@tanstack/start/server`, which is a function that streams the response to the client.
34+
The handler is then called with the `defaultStreamHandler` function from `@tanstack/react-start/server`, which is a function that streams the response to the client.

‎docs/start/framework/react/static-prerendering.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ TanStack Start is built on Nitro, which means we can take advantage of Nitro's p
1414
```js
1515
// app.config.js
1616

17-
import { defineConfig } from '@tanstack/start/config'
17+
import { defineConfig } from '@tanstack/react-start/config'
1818

1919
export default defineConfig({
2020
server: {
@@ -37,7 +37,7 @@ For this example, let's pretend we have a blog with a list of posts. We want to
3737
```
3838
// app.config.js
3939
40-
import { defineConfig } from '@tanstack/start/config'
40+
import { defineConfig } from '@tanstack/react-start/config'
4141
4242
export default defineConfig({
4343
server: {

‎docs/start/framework/react/static-server-functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This interface can be customized by importing and calling the `createServerFnSta
3434
import {
3535
createServerFnStaticCache,
3636
setServerFnStaticCache,
37-
} from '@tanstack/start/client'
37+
} from '@tanstack/react-start/client'
3838

3939
const myCustomStaticCache = createServerFnStaticCache({
4040
setItem: async (ctx, data) => {

0 commit comments

Comments
 (0)
Please sign in to comment.