Install a package from the registry
Execute package scripts
Update packages to latest versions
Remove a package
npm uninstall <package>
Removes a package from node_modules and updates package.json.
Remove local package
npm uninstall lodash
Remove global package
npm uninstall -g typescript
Check for outdated packages
View installed dependencies
Publish to npm registry