Node.js is full of utilities and tools that can make the development of our projects easier. One such tool is NPM. NPM has been around for 10 years and comes pre-installed with Node.js. NPM is more popularly known for being the default package manager for Node.js but its functionality doesn’t end here. Apart from being a command-line tool that allows you to install, update and manage JavaScript packages, NPM offers a feature known as “npm scripts”, which are a series of commands that can be executed using the command “npm run”. If you want to learn more about npm from…