Define Routers
Initialize tRPC​
- If you don't like the variable name
t
, you can call it whatever you want - You should create your root
t
-variable exactly once per application - You can also create the
t
-variable with a context, metadata, a error formatter, or a data transformer.
server/trpc.tsts
import {initTRPC } from '@trpc/server';Âexport constt =initTRPC .create ();
server/trpc.tsts
import {initTRPC } from '@trpc/server';Âexport constt =initTRPC .create ();
Defining a router​
server/_app.tsts
import * astrpc from '@trpc/server';import {t } from './trpc';ÂconstappRouter =t .router ({greeting :t .procedure .query (() => 'hello tRPC v10!'),});Â// Export only the **type** of a router to avoid importing server code on the clientexport typeAppRouter = typeofappRouter ;
server/_app.tsts
import * astrpc from '@trpc/server';import {t } from './trpc';ÂconstappRouter =t .router ({greeting :t .procedure .query (() => 'hello tRPC v10!'),});Â// Export only the **type** of a router to avoid importing server code on the clientexport typeAppRouter = typeofappRouter ;