by mguay | Dec 27, 2025 | NestJS, Post, TanStack
Introduction In modern full-stack development, maintaining type safety across frontend and backend can be challenging. Different teams might duplicate type definitions, leading to inconsistencies and runtime errors. In this guide, we’ll explore how to create a...
by mguay | Nov 24, 2025 | Lecture, NestJS, Next.js, Project
In this 3-hour, full-stack build, we create an AI chatbot from scratch using NestJS and Next.js. You’ll learn how to harness the Vercel AI SDK + Gateway to stream messages in real time, execute tool calls, and persist conversations with Drizzle ORM. By the end, you’ll...
by mguay | Oct 29, 2025 | NestJS, Post
Writing Clean, Decoupled Code with the Strategy Pattern One of the biggest signs of a mature backend developer is understanding how to decouple high-level business logic from low-level implementation details. That’s exactly what the Dependency Inversion Principle...
by mguay | Oct 12, 2025 | Lecture, NestJS
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...
by mguay | Sep 3, 2025 | NestJS, Post
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...