Framework agnostic transpilation utilities for client/server RPCs, env isolation, islands, module splitting, and more.
=======
The server$ function is used to create a server-side RPC. It takes a function as its only argument, and returns a function that can be called from the client-side.
🧠 Important Notes:
- The server-side function must be an
asyncfunction. - RPC's default to
POSTrequests and pass payloads as request the request body. To useGETrequests and search-param payloads instead, theopts.methodcan be set toGET. This will automatically configure both the method and the payload serialization to work via search params instead of a request body. You can also alter the actual request (and request body) manually to your liking.
import { server$ } from '@tanstack/bling'
const serverFn = server$(async (payload) => {
// do something
return 'result'
})server$<T extends (...args: any[]) => any>(fn: T, options: {
method?: 'POST' | 'GET' // Defaults to `POST`
request?: RequestInit
}): Tfn- The function to be called from the client-side.
- Arguments
payload- The payload passed from the client-side.
ctx- The context object passed from the client-side.
request- The request object passed from the client-side.
- Returns the data or response to be sent back to the client-side
Promise<JSON | Response>
- Can use utilities like
json,redirect, oreventStreamto return convenient responses.
optionsmethod- The HTTP method to use when calling the server-side function.
- Defaults to
POST - If
GETis used, the payload will automatically be encoded as query parameters.
request- The default request object to be passed to the
fetchcall to the server function. - Can be used to add headers, signals, etc.
- The default request object to be passed to the
A function that can be called isomorphically from server or client side code to execute the server-side function.
-
fn( payload: JSON, options: { method?: 'POST' | 'GET' // Defaults to `POST` request?: RequestInit } ) => Promise< Awaited<ReturnType<T>> extends JsonResponse<infer R> ? R : ReturnType<T> >
- Arguments
payload- The payload to be passed to the server-side function.
optionsmethod- The HTTP method to use when calling the server-side function.
- Defaults to
POST - If
GETis used, the payload will automatically be encoded as query parameters.
request- The request object to be passed to the
fetchcall to the server function. - Can be used to add headers, signals, etc.
- The request object to be passed to the
- Returns
- If a plain Response is returned in the server function, it will be returned here.
- If a redirect is returned or thrown in the server function, the redirect will be followed.
- All other values will be treated as JSON. For type-safe JSON, use the
json(data, responseInit)utility
- Arguments
-
fn.fetch- A convenience
fn.fetchmethod is also exposed on the function itself to facilitate custom fetch calls. In this case, only the request object is passed as the first argument. Any data you wish to pass should be encoded in the request object.
fn.fetch( request: RequestInit, ) => Promise< Awaited<ReturnType<T>> extends JsonResponse<infer R> ? R : ReturnType<T> >
- Arguments
payload- The payload to be passed to the server-side function.
optionsrequest- The request object to be passed to the
fetchcall to the server function. - Can be used to add headers, signals, etc.
- The request object to be passed to the
- A convenience