Best of NestJS2021

  1. 1
    Article
    Avatar of dzDZone·5y

    Create a Multi-tenancy Application In Nest.js

    Multitenancy is an operational mode in SaaS applications where various independent instances are allocated to the same environment. This article will not discuss designing a multitenancy application, however, you can read about it in detail here: What is Multi-Tenant Architecture? From here on, we are going to work on an example about the multi-tenants using multiple databases and microservices architecture. We will use sample web services to test the flow, for example creating users, sending and receiving notifications, etc.

  2. 2
    Article
    Avatar of devtoDEV·5y

    Nestjs🐺⚡ | The framework of Nodejs (Part-1)

    Nestjs is a server-side framework often confused with the term "Server-Side Angular" It centralizes all the needed technologies/tools to build perfect, reliable & durable enterprise servers using Nodejs. It provides/supports (through packages): http-server (express/fastify) GraphQL server websocket server (socket.io/ws) database orm (sequelize/mongoose/typeorm/knex/prism) request body validation using class-validator caching.

  3. 3
    Article
    Avatar of dzDZone·5y

    Create a Multi-tenancy Application In Nest.js

    In Create a Multi-tenancy Application In Nest.js - Part 1, we set up the Nest framework, configured, and tested the microservice application. In this application, we will work with MySQL and MongoDB. We will also use the popular Js libraries including Sequelize as ORM for MySQL and mongoose for Mongo DB.

  4. 4
    Article
    Avatar of hashnodeHashnode·5y

    A project management app built using Angular, NestJs & Auth0

    Compito is a simple and easy-to-use project management application built using Angular and NestJs. It's my submission towards the Auth0 x Hashnode hackthon. After more than 300 commits, I feel the app is having all the basic functionality that I planned.

  5. 5
    Article
    Avatar of devtoDEV·5y

    Nestjs🐺⚡ | The framework of Nodejs (Part-3) | Database Integration, TypeORM

    Nestjs is an abstraction over typical Nodejs server APIs/Package. It supports all kinds of popular databases & most of their ORMs. The configuration pattern of all of them is mostly the same. There's always an official/3rd-party package & documentation for your choice.