NestJS Hexagonal Architecture + CQRS | Full Project

NestJS Hexagonal Architecture + CQRS | Full Project

In this lecture, we’ll build a complete NestJS project using Hexagonal Architecture and CQRS from the ground up. You’ll learn how to structure your code around core domain logic, application services, and infrastructure adapters — creating a clean, maintainable, and...
Implementing Idempotency in NestJS with an Interceptor

Implementing Idempotency in NestJS with an Interceptor

When building APIs, especially for payments or operations that modify state, you want to avoid executing the same request multiple times if the client retries. Stripe popularized the concept of idempotency keys: clients attach a unique key to a request, and the server...
How to Integrate Better-Auth with NestJS + tRPC

How to Integrate Better-Auth with NestJS + tRPC

When you’re building a modern API with NestJS and tRPC, authentication is usually one of the first hurdles. Instead of rolling your own, you can use Better Auth, a lightweight authentication service that integrates seamlessly with NestJS. In this post, I’ll show you...
Add SSL to Drizzle + NestJS for AWS RDS (Postgres)

Add SSL to Drizzle + NestJS for AWS RDS (Postgres)

Encrypting database traffic isn’t optional—especially if you’re handling user data or building anything that might one day need audits or certifications. Fortunately, enabling SSL/TLS for Postgres on AWS RDS with Drizzle ORM (node-postgres) in a NestJS app is...