tRPC 101: Concepts and some code experiments with create T3 app

Lada496
Towards Dev
Published in
6 min readJul 11, 2023

--

In this article, I will share what I’ve learned about tRPC with an example app built with create T3 app.

my very lite Twitter-ish app

Concept

RPC stands for “Remote Procedure Call,” and tRPC enables calling functions on a server computer from a client computer (It’s just functions). Instead of manually making HTTP requests to specific URLs and handling…

--

--