Posted 11/10/2024

Npm commands cheat sheet

clear and reinstall dependencies

  • Git Bash
      rm -rf node_modules && rm package-lock.json && npm i
    
  • Powershell
      rm -Recurse -Force .\node_modules\; rm package-lock.json
      npm i
    

clear cache

npm cache clean --force

Angular - run single test

npm t -- --include src/app/some-folder/some-test.spec.ts

Outdated

This will list all the outdated dependencies, including their current and latest versions, so you can get oriented better what you should update.

npm outdated