© 2023 Hashnode
#trpc
Recently, I have used the T3 Stack to create a type-safe, full-stack Next.js web application. Before this project, I had no prior experience with any of these technologies, but thanks to create-t3-app, created by nexxel, the setup process w…
I'm a big fan of tRPC. The idea of exporting types from the server and importing them in the client to have a type-safe contract between both, even without a compile-time step, is simply brilliant. To all the people who are involved in tRPC…
There have been many discussions on Twitter around "GraphQL versus tRPC" for building a modern backend for your application. GraphQL has become popular in recent years as the defacto successor to REST…
With the surge in APIs and their consumption among web companies globally, API security has become increasingly important. JWT authentication is a standard way of protecting APIs. It excels at valida…
NOTE: This is a first draft and I will be updating this shortly with all the code. Building With tRPC In this tutorials we'll be building a monorepo setup with Lerna that has a backend built with tRPC…
[originally published here] We all know the hassle of building APIs. You install Express, or Nest if you’re developing for a big project, maybe GraphQL, and then you have to make everything yourself. …
TL;DR: I built Tourgether, the social network for hiking, in the last month to participate in the recent Hackathon from PlanetScale and Hashnode. In this post I describe some of my decisions and key l…
This isn't the best guide to use tRPC, probably there are better ways to do this, like create-t3-app, the best I could find. Most of what is here is from the tRPC's documentation, you can refer them, …