how to install npm\ code example
Example 1: what is npm install
npm install module-name
npm i module-name
puts module-name package (js library file)
into node_modules folder
so you can require it in node app
Example 2: how to install npm packages
npm i <package>