You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/start/framework/react/middleware.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Middleware allows you to customize the behavior of server functions created with
22
22
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`.
Once you've defined your middleware, you can use it in combination with the `createServerFn` function to customize the behavior of your server functions.
@@ -61,7 +61,7 @@ Several methods are available to customize the middleware. If you are (hopefully
61
61
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.
@@ -76,7 +76,7 @@ Type-safe context and payload validation are also inherited from parent middlewa
76
76
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:
@@ -105,7 +105,7 @@ The `server` method is used to define **server-side** logic that the middleware
105
105
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.
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.
const awesomeMiddleware =createMiddleware().server(({ next }) => {
126
126
returnnext({
@@ -151,7 +151,7 @@ By default, middleware validation is only performed on the server to keep the cl
151
151
> 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.
Copy file name to clipboardexpand all lines: docs/start/framework/react/server-functions.md
+36-36
Original file line number
Diff line number
Diff line change
@@ -38,11 +38,11 @@ Server functions can use middleware to share logic, context, common operations,
38
38
39
39
> 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!
40
40
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:
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.
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:
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.
325
325
326
326
There are many context functions available to you for things like:
327
327
@@ -332,7 +332,7 @@ There are many context functions available to you for things like:
332
332
- Dealing with multi-part form data
333
333
- Reading/Setting custom server context properties
334
334
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).
336
336
337
337
For starters, here are a few examples:
338
338
@@ -341,8 +341,8 @@ For starters, here are a few examples:
341
341
Let's use the `getWebRequest` function to access the request itself from within a server function:
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.
## Calling server functions from hooks and components
564
564
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:
> ⚠️ 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.
648
648
649
649
## Redirect Headers
650
650
651
651
You can also set custom headers on a redirect by passing a `headers` option:
@@ -705,7 +705,7 @@ Not found errors are a core feature of TanStack Router,
705
705
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.
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:
30
30
31
31
-`createRouter`: A function that creates a router for your application. This function should return a new router instance each time it is called.
32
32
-`getRouterManifest`: A function that returns a manifest of all the routes in your application.
33
33
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.
0 commit comments