npm

Created: 2017 May 19th

Updated: 2019 Mar 1st

Edit this page on GitHub

A list of terminal commands and flags to help me use npm

install package.json dependencies

npm install

Shorthand

# install
npm i <package>
# uninstall
npm un <package>
# update
npm up <package>

List globally installed packages.

npm list -g --depth=0

list available scripts to run

npm run

update npm

npm install -g npm@latest
# using windows? Then use
npm-windows-upgrade

flags

-S is the same as --save not needed in npm 5+ -D is the same as --save-dev

installed version

npm list # for local packages

Uninstall global package

npm -g uninstall <name> --save

Upgrade NPM on Windows

After trying several times to upgrade npm on Windows I found this whilst poking around.

npm-windows-upgrade

Updating global packages

To update global packages individually you can use:

npm update -g <package>

To see which packages need updating use:

npm outdated -g --depth=0

dont rm -rf node_modules; npm install

Instead use:

npm ci

It will have the same effect but be 2-3x faster

Bump version number

npm version patch
# also | major | minor | patch
Scott avatar

Made with ❤️ by Scott Spence

Copyright © 2024 - All right reserved