How to manage globally installed node packages using npm?

  • Post published:July 17, 2020

Node package manager (npm) provides the ability to install node packages globally in a computer. This is useful when using packages like @angular/cli, @nestjs/cli, @vue/cli, etc. When using the -g…

Dependency Injection with Node.js

  • Post published:May 31, 2020

Node.js supports the Dependency Injection (DI) design pattern by utilizing the awilix npm package. Awilix is a powerful dependency injection container for JavaScript/Node providing a very simple API. Another useful…

Create a mock REST API with JSON Server

  • Post published:April 26, 2020

When following an Agile methodology, with a number of iterations, and having a team of front-end and back-end developers, it can be a challenge to complete committed tasks (or a…