Best of NestJSOctober 2024

  1. 1
    Video
    Avatar of communityCommunity Picks·2y

    Learn NestJS – Complete Course

    Learn the fundamentals of NestJS by building a back end for a Spotify clone. NestJS, built on Node.js, ExpressJS, and TypeScript, embraces Angular concepts to organize and structure server-side applications. The guide covers database design, REST API creation, and deployment. Key components like controllers, providers, modules, middleware, exception filters, and decorators are explained to help manage complex applications. The tutorial walks through setting up a project, creating routes, handling requests with controllers, using services for business logic, and connecting to databases with TypeORM.

  2. 2
    Article
    Avatar of communityCommunity Picks·2y

    A Guide to NestJS Localization

    NestJS is a robust framework for building server-side applications, particularly effective for large-scale projects. This guide introduces the `nestjs-i18n` library for simplifying localization in NestJS applications. Key steps include setting up `nestjs-i18n`, moving hard-coded strings to translation files, loading these files correctly, injecting i18n contexts and services, determining active locales, and adding type safety. The guide also covers translating database data, handling dynamic and plural values in translations, and localizing DTO validation messages.