The greatest package manager to ever grace this earth

Installation

sudo pacman -S npm

Initializing package.json

npm init -y

Installing packages

Find packages at https://www.npmjs.com/ In your project folder:

npm i --save bash-parser

package.json will be updated after package installation.

Installing as Dev-Dependency

npm i --save-dev nodemon

Running npm

npm start