I am having trouble with npm and node version 0.10.40. I never had this problem before and I am not behind a proxy. I have tried other solutions that I found on Stack Overflow and other forums such as changing the registry url to http://.. rather than https://.., and setting strict-ssl to false. When I do this npm is unable to parse JSON. Here is my npm-debug.log. Maybe someone can help me figure out what is going on.
npm-debug.log
I solved this issue by issuing the following commands
npm config set proxy false
npm cache clean
Apparently npm was attempting to bypass a proxy or believed it was behind a proxy. Strange.
When you are behind the proxy in a corporate environment you would have used the following commands
npm config set proxy http://xxx.xxx.xxx.x:8080
npm config set https-proxy http://xxx.xxx.xxx.x:8080
When you are not just switch the proxy off by
npm config set proxy false
npm cache clean
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With