2

当我尝试通过 Node 安装 Express 时,它显示以下错误:

D:\NodeJS\express>npm install express
npm http GET https://registry.npmjs.org/express
npm http GET https://registry.npmjs.org/express
npm http GET https://registry.npmjs.org/express
npm ERR! Error: tunneling socket could not be established, cause=getaddrinfo ENOENT
npm ERR!     at ClientRequest.onError (C:\Program Files\nodejs\node_modules\npm\node_modules\request\tunnel.js:161:17)
npm ERR!     at ClientRequest.g (events.js:192:14)
npm ERR!     at ClientRequest.EventEmitter.emit (events.js:96:17)
npm ERR!     at CleartextStream.socketErrorListener (http.js:1394:9)
npm ERR!     at CleartextStream.EventEmitter.emit (events.js:96:17)
npm ERR!     at Socket.onerror (tls.js:1318:17)
npm ERR!     at Socket.EventEmitter.emit (events.js:126:20)
npm ERR!     at Socket.connect.require.lookup.addressType (net.js:699:16)
npm ERR!     at process.startup.processNextTick.process._tickCallback (node.js:244:9)
npm ERR! If you need help, you may report this log at:
npm ERR!     <http://github.com/isaacs/npm/issues>
npm ERR! or email it to:
npm ERR!     <npm-@googlegroups.com>

npm ERR! System Windows_NT 6.1.7601
npm ERR! command "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "express"
npm ERR! cwd D:\NodeJS\express
npm ERR! node -v v0.8.17
npm ERR! npm -v 1.2.0
npm ERR! code ECONNRESET
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR!     D:\NodeJS\express\npm-debug.log
npm ERR! not ok code 0

D:\NodeJS\express>

我也尝试过 -g 安装,但它不起作用!请在这里帮我...

4

2 回答 2

1

对于那些设置 Node.js 和使用 npm 的人。我认为 Web 代理设置会像 unix 世界的其他部分一样,需要我设置 HTTP_PROXY 和 HTTPS_PROXY 环境变量。

打开命令提示符或终端会话并运行以下命令来配置 npm 以使用您的 Web 代理。这些命令使用 proxy.companyname.com 作为地址,使用 8080 作为端口。

C:>npm config 设置代理http://proxy.companyname.com:8080 C:>npm config 设置 https-proxy http://proxy.companyname.com:8080

于 2014-03-21T04:54:45.453 回答
1

看起来 npm 无法连接到中央存储库。这可能是因为您的笔记本电脑上的一般连接问题,但您在这里做到了:) 或者可能是因为您计算机上的证书颁发机构与 npm 使用的证书不匹配。

确保您可以从浏览器访问https://registry.npmjs.org/express而没有任何证书(SSL 安全)警告。如果这不是原因,您应该更新您的证书颁发机构。

Windows 证书根目录有一个 Windows XP 更新。

于 2013-03-19T11:31:19.700 回答