NestJS Podcast Summaries
NestJS on Yedapo: 4 summarized podcast and YouTube episodes. Each includes key takeaways, core concepts and notable quotes with timestamps.
NestJS Route Decorators Explained
JavaScript Mastery
Jul 6, 2026
Unlock streamlined API development with NestJS controllers, which elegantly manage incoming requests and responses. By leveraging powerful decorators, NestJS eliminates manual route registration, drastically simplifying how you define and handle HTTP methods and URLs, making development faster and more intuitive.
Key insight: NestJS's decorator-based routing automatically handles request mapping, removing the need for manual route registration typically seen in frameworks like Express.
The Missing Piece in Your Backend Skills
JavaScript Mastery
Jun 29, 2026
While Express remains functional, industry demand has shifted toward NestJS due to its enterprise-grade architecture. Learning NestJS isn't about discarding Express skills but layering them with the structural patterns, such as dependency injection and modules, required by professional teams.
Key insight: NestJS doesn't replace your Express knowledge; it acts as a structured framework built on top of it, providing the architectural rigor needed for large-scale production applications.
NestJS Full Course for Beginners in 2026 | Build a Production-Ready API
JavaScript Mastery
Jun 26, 2026
Adrian from JS Mastery demonstrates how to build production-grade back-ends by combining NestJS’s structural rigors with AI-powered coding agents. The episode provides a comprehensive crash course in Nest architecture—modules, providers, and guards—before guiding viewers through constructing a secure hackathon API using Prisma, Better Auth, and Arcjet.
Key insight: NestJS isn't a replacement for Express; it’s a structured wrapper that enforces architectural consistency through TypeScript-first design, dependency injection, and decorators, making it the industry standard for scalable team-based development.

#Nestjs - Uwierzytelnienie i autoryzacja API z Passport.js JSON Web Token (JWT) by overment
overment
Apr 6, 2020
Adam demonstruje implementację pełnego cyklu uwierzytelniania i autoryzacji w NestJS. Wykorzystuje Passport.js do obsługi strategii lokalnej oraz standard JWT do bezpiecznej identyfikacji użytkowników, kładąc szczególny nacisk na poprawne haszowanie haseł za pomocą biblioteki bcrypt.
Key insight: Nigdy nie przechowuj haseł w formie tekstu jawnego (plain text); zawsze używaj haszowania z solą (salt), aby zabezpieczyć dane użytkowników nawet w przypadku wycieku z bazy.