Node Package Manager - npm
# Install dependenciesnpm install
# Run testsnpm test
# Update dependenciesnpm update
# Update global (-g) packagesnpm update -g
# Install a global (-g) package to be available in pathnpm install -g prettier
# List install packagesnpm ls
# Uninstall a packagenpm uninstall package_name
# NPM proxy setting# per https://medium.com/@ogbemudiatimothy/using-npm-install-behind-a-corporate-proxy-server-db150c128899npm config set proxy http://1.1.1.1:3128npm config set https-proxy http://1.1.1.1:3128
# Remove proxynpm config rm proxynpm config rm https-proxy
# Run command from a local or remote rpm packagenpx [args]
# npm exec Check project files with ESLint version in projectnpx eslint ./*.js
# Clean npm cachenpm cache clean --forceAngular
Section titled “Angular”# Install dependencies including Angularnpm install
# NPM Execute (npx) to run a local or remote npm package, Angular CLI buildnpx ng build# Run angular CLI set up in the project# Requires npm install first
# Run testnpx ng test
# Run applicationnpx ng serve