2

我正在尝试在工作的机器上安装 Grunt。我已经成功安装了 Node.JS 并配置了代理(npm config set proxy以及 https-proxy)。我也尝试过这里的解决方案:有没有办法让 npm install (命令)在代理后面工作?

这是我得到的错误:

http GET https://registry.npmjs.org/grunt-cli
silly lockFile d63f3d0b-grunt-cli grunt-cli@
silly lockFile d63f3d0b-grunt-cli grunt-cli@
error Error: tunneling socket could not be established, cause=Parse Error
error     at ClientRequest.onError (C:\Program Files\nodejs\node_modules\npm\node_modules\request\node_modules\tunnel-agent\index.js:159:17)
error     at ClientRequest.g (events.js:175:14)
error     at ClientRequest.EventEmitter.emit (events.js:95:17)
error     at Socket.socketOnData (http.js:1558:9)
error     at TCP.onread (net.js:525:27)

我应该怎么做才能解决这个问题?

4

1 回答 1

1

对我有用的解决方案是将注册表从 https 设置为 http:

$ npm config set http://registry.npmjs.org/
于 2013-07-02T11:52:44.237 回答