礼拜天在家里用“npm -g install node-inspector”命令安装 node-inspector时,没报什么错,就顺利安装好了。但是来公司以同样的方法安装就报错了,错误如图:
后来谷歌到一篇文章是说 他在安装exprss 是报了同样的错误,说是https_proxy 损坏了,用 http 去注册。
在cdm 下敲命令“npm config set registry http://registry.npmjs.org/”
原话是:
“it sounds the https_proxy is broken.
so try to use http registry to solve it:
npm config set registry http://registry.npmjs.org/ ”
按照他说的修补,果然好了。效果如下图: