by mguay | Apr 10, 2025 | NestJS, Node.js, Post
HTTP Keep-Alive, also known as HTTP persistent connection, is the practice of reusing a single TCP connection to send multiple HTTP requests and responses, instead of opening a new connection for every request (HTTP persistent connection – Wikipedia). In modern...
by mguay | Mar 21, 2025 | Lecture, NestJS, Next.js
In this hands-on lecture, you'll master full-stack authentication using Clerk, seamlessly integrating Next.js on the frontend and NestJS on the backend in just 20 minutes. You'll quickly understand how Clerk simplifies authentication flows—from signup to login—while...
by mguay | Feb 20, 2025 | Lecture, NestJS, Next.js
In this lecture, you'll learn how to build an event-driven architecture that seamlessly connects a NestJS backend with a Next.js UI using EventEmitter and Server-Sent Events (SSE). By the end of this lecture, you'll have a fully functional event-driven system, where...
by mguay | Dec 28, 2024 | NestJS, Post
NestJS is a versatile framework that can go beyond server-based applications. In this guide, we’ll focus on building a NestJS standalone application, showcasing how to utilize its modular structure and dependency injection to create a CLI-based tool for web scraping....
by mguay | Dec 15, 2024 | Lecture, NestJS, Next.js
Discover how NestJS and tRPC are revolutionizing API development with type-safe APIs, faster workflows, and zero boilerplate. In this video, we dive into why this combination is a game-changer for developers building scalable and maintainable backend systems. Includes...
by mguay | Oct 20, 2024 | Kubernetes, Lecture, NestJS, Node.js
In a Kubernetes environment, graceful termination is essential for ensuring smooth transitions during deployments or scaling in your Node.js applications. Learn how we can handle the SIGTERM signal that Kubernetes sends when terminating a pod. This allows Node.js to...