Node JS / NPM | Cookbook

Komplette Neuinstallation der Module

# 👇️ delete node_modules and package-lock.json
rm -rf node_modules
rm -f package-lock.json

# 👇️ clean npm cache
npm cache clean --force

npm install