Best of NestJSJune 2022

  1. 1
    Article
    Avatar of logrocketLogRocket·4y

    NestJS vs. Express.js

    NestJS is a Node.js framework for building server-side applications. It is based on TypeScript and JavaScript. Most of what you find in Angular can also be found in Nest, including providers, middleware, components, and services. Nest is platform agnostic, meaning it can work with any Node HTTP framework.

  2. 2
    Article
    Avatar of logrocketLogRocket·4y

    Comparing four popular NestJS ORMs

    Object-relational mapping (ORM) is a technique that abstracts your database tables to data objects in memory. ORMs are used to make database access easier, as developers won’t need to write raw queries. For convenience, NestJS provides tight integrations with TypeORM and Sequelize out of the box.