Deploy NestJS on Railway with Postgres & Docker

Deploy NestJS on Railway with Postgres & Docker

In this video, I’ll walk you through how to deploy a NestJS application to Railway, fully containerized with Docker, and connected to a PostgreSQL database. You’ll learn how to configure your Dockerfile, set up environment variables, and get your app live with just a...
Optimizing NestJS Performance with HTTP Keep-Alive

Optimizing NestJS Performance with HTTP Keep-Alive

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...
NestJS + Next.js: Event Driven Architecture

NestJS + Next.js: Event Driven Architecture

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...
Building a Standalone NestJS Application for Web Scraping

Building a Standalone NestJS Application for Web Scraping

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....