How to install a multiple packages in Npm
Learn, how to install multiple packages with a single command in npm.
Normally, we install a single package using the npm install command followed by the package-name.
npm install expressInstalling multiple packages
To install multiple packages, we need to use the npm install followed by the multiple package names separated by the spaces package1 package2.
Example:
npm install express cors body-parserThis above command installs three packages, which are express, cors and body-parser.
You can also checkout how to install the specific version of an npm package.


