Clear the Cache

npm cache clean --force

Full Reset

Mac / Linux:

rm -rf node_modules
rm package-lock.json
npm install

Windows:

rmdir /s /q node_modules
del package-lock.json
npm install

When to Use This

  • npm install fails with a strange error
  • A package update doesn’t take effect
  • You switched Node.js versions and something broke