DEV Community

Cover image for AdonisJS vs NestJS | NodeJS API Frameworks
Marius Espejo
Marius Espejo

Posted on

 

AdonisJS vs NestJS | NodeJS API Frameworks

In this video we compare AdonisJS 5 head-to-head against NestJS (with ExpressJS and TypeORM behind the scenes) and see which one comes out on top!

If you've been trying to decide which of these two Typescript-based frameworks to use, this is the content for you!

Topics covered include:

  • Starting a project
  • CRUD
  • Routing and Controllers
  • Exception Handling
  • Request body, query params, url params
  • Validation
  • Inversion of Control and Dependency Injection
  • Testing

... and more!

You can watch here:

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.