npm reset config

To reset user defaults

Run this in the command line (or git bash on windows):

echo "" > $(npm config get userconfig)
npm config edit

To reset global defualts

echo "" > $(npm config get globalconfig)
npm config --global edit

If you need sudo that run this instead:

sudo sh -c 'echo "" > $(npm config get globalconfig)'
原文地址:https://www.cnblogs.com/fenle/p/5586496.html