Npm How to Reinstall Node Modules Packages (package.json)

Sometimes you need to reset node modules package, a common method to clear out any potential errors. Use the following command in the terminal to remove the folder and contents and reinstall packages.

rm -rf node_modules && npm install

You can also do npm update instead of the above, but this will not work if there are no new packages.

Leave a Comment