tRPC Core Concepts Overview
Get a high-level overview of tRPC's architecture, including routers, procedures, and context.
tRPC Core Concepts Intro
Time for tRPC's building blocks. We'll cover routers (how the API is organized), procedures (the functions clients call), and context (per-request data).
tRPC Flow: Client to Server
The tRPC flow: the client calls a procedure, the router routes it, the procedure runs (often using context), and a typesafe response goes back to the client.
All lessons in this course
- What is tRPC?
- The Power of Type Safety
- tRPC Core Concepts Overview
- Setting Up Your First tRPC Project