Router in oRPC
Routers in oRPC are simple, nestable objects composed of procedures. They can also modify their own procedures, offering flexibility and modularity when designing your API.
Overview
Routers are defined as plain JavaScript objects where each key corresponds to a procedure. For example:
import { os } from '@orpc/server'
const ping = os.handler(async () => 'ping')
const pong = os.handler(async () => 'pong')
const router = {
ping,
pong,
nested: { ping, pong }
}
Extending Router
Routers can be modified to include additional features. For example, to require authentication on all procedures:
const router = os.use(requiredAuth).router({
ping,
pong,
nested: {
ping,
pong,
}
})
Lazy Router
In oRPC, routers can be lazy-loaded, making them ideal for code splitting and enhancing cold start performance. Lazy loading allows you to defer the initialization of routes until they are actually needed, which reduces the initial load time and improves resource management.
const router = {
ping,
pong,
planet: os.lazy(() => import('./planet'))
}
const PlanetSchema = z.object({
id: z.number().int().min(1),
name: z.string(),
description: z.string().optional(),
})
export const listPlanet = os
.input(
z.object({
limit: z.number().int().min(1).max(100).optional(),
cursor: z.number().int().min(0).default(0),
}),
)
.handler(async ({ input }) => {
// your list code here
return [{ id: 1, name: 'name' }]
})
export default {
list: listPlanet,
// ...
}
Utilities
Infer Router Input
import type { InferRouterInputs } from '@orpc/server'
export type Inputs = InferRouterInputs<typeof router>
type FindPlanetInput = Inputs['planet']['find']
This snippet automatically extracts the expected input types for each procedure in the router.
Infer Router Output
import type { InferRouterOutputs } from '@orpc/server'
export type Outputs = InferRouterOutputs<typeof router>
type FindPlanetOutput = Outputs['planet']['find']
Similarly, this utility infers the output types, ensuring that your application correctly handles the results from each procedure.