I\'m trying to install some node packages through npm, but it won\'t go. I\'ve already tried to install/unistall/update node, but nothing seems to work.
I\'m using u
This worked for me (not using proxy):
set registry mirror for npm..
npm config set registry http://skimdb.npmjs.com/registry
found mirror from docs:https://docs.npmjs.com/misc/registry
3.npm install -g handlebar //i did because it was showing error in npm log but you can skip
4.after that try to set again official registry
npm config set registry http://registry.npmjs.org
5.now try to install whatever package you want :-)