0% found this document useful (0 votes)
11 views10 pages

Essential Npm Commands Every Developer Should Know

Uploaded by

eonly6080
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views10 pages

Essential Npm Commands Every Developer Should Know

Uploaded by

eonly6080
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

NPM

commands

some essential NPM


commands for
managing your
packages efficiently
Install a package

npm install <packageName>


npm install axios

NEXT
Install a specific version of a
package

npm install <packageName>@<versionName>

npm install [email protected]

NEXT
Install a package as a
development dependency

npm install <packageName> --save-dev

npm install nodemon --save-dev

NEXT
Uninstall a package

npm uninstall <packageName>

npm uninstall nodemon

NEXT
Check installed packages
with their versions

npm list —depth=0

NEXT
Check installed packages
and their dependency

npm list

NEXT
List of outdated packages

npm outdated

NEXT
Update packages

npm update

NEXT
Thanks for watching

— MD Easin

You might also like