
tRPC: End-to-End Type-Safe APIs in TypeScript Without Codegen
- Web Development
- Backend Engineering
- 20 Jul 2026
- 08 Mins read
The line between the frontend and the backend has always been a place where types go to die. In a normal REST setup you define the shape of a request and a response on the server, then you write those

Setting up Node JS, Express, MongoDB, Prettier, ESLint and Husky Application with Babel and authentication as an example
- Backend Development
- Node.js
- 25 Jun 2022
- 28 Mins read
Introduction All code from this tutorial as a complete package is available in this repository. If you find this tutorial helpful, please share i

The ORM Dilemma: To Use or Not to Use
- Backend Development
- Node.js
- 24 Aug 2023
- 06 Mins read
Introduction Some decisions shape a project more than others. One that keeps coming back is whether to use an Object-Relational Mapping (ORM) tool for database interactions. Should you skip an ORM

Get Started with Building ReactJS and Docker: A Complete Guide
Introduction Docker is a powerful tool that allows developers to create, deploy, and run applications in a portable and scalable way. It uses containerization to encapsulate all the dependencies a

Run TypeScript Without Compiling
- TypeScript
- Node.js
- 02 Dec 2022
- 02 Mins read
Introduction In this post, I will show you how to run TypeScript without compiling it to JavaScript first. This is useful for debugging and testing. Set up a TypeScript project Step 1: cr

Setting up Node.js, Express, Prettier, ESLint, and Husky application with Babel and TypeScript - Part 1
- Backend Development
- Node.js
- 01 Jul 2022
- 14 Mins read
Introduction All code from this tutorial as a complete package is available in this repos