Answers for "install dependencies npm without package.json"

4

how to install dependencies from package.json

npm install // installs dependencies listed in package.json
Posted by: Guest on September-01-2020
0

add dependencies to package.json

npm install <package-name> --save # Installs the package and add dependency in package.json
npm install # Installs dependencies listed in package.json
Posted by: Guest on April-09-2021

Code answers related to "install dependencies npm without package.json"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language