NodeJs — npm and Packages
npm is used to manage external libraries and packages in Node.js. You can initialize a project with npm init
and install packages using npm install
. Popular packages include Express, Mongoose, and Lodash.
npm init -y
npm install express