简体   繁体   English

使用package.json文件或不使用package.json文件安装Express时出错

[英]Error in installing express either using package.json file or without using package.json file

I am trying to install express in my windows terminal by following the instruction mentioned in express website guide 我正在尝试按照Express网站指南中提到的说明在Windows终端中安装Express

1 First I created a directory node and inside that package.json file. 1首先,我在该package.json文件中创建了一个目录节点。

my package.json is as follows 我的package.json如下

{
  "name": "hello-world",
  "description": "hello world test app",
  "version": "0.0.1",
  "private": true,
  "dependencies": {
    "express": "3.x"
  }
}

then I tried to run the command 然后我尝试运行命令

npm install

but getting the following error 但是出现以下错误

E:\myFindings\nodejs_programs\node>npm install
npm http GET https://registry.npmjs.org/express
npm http GET https://registry.npmjs.org/express/-/express-3.4.8.tgz
npm ERR! Error: tunneling socket could not be established, cause=connect ETIMEDOUT
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:185:14)
npm ERR!     at ClientRequest.EventEmitter.emit (events.js:88:17)
npm ERR!     at Socket.socketErrorListener (http.js:1320:9)
npm ERR!     at Socket.EventEmitter.emit (events.js:88:17)
npm ERR!     at Socket._destroy.self.errorEmitted (net.js:329:14)
npm ERR!     at process.startup.processNextTick.process._tickCallback (node.js:244:9)
npm ERR!  { [Error: tunneling socket could not be established, cause=connect ETIMEDOUT] code: 'ECONNRESET' }
npm ERR! 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"
npm ERR! cwd E:\myFindings\nodejs_programs\node
npm ERR! node -v v0.8.0
npm ERR! npm -v 1.1.32
npm ERR! code ECONNRESET
npm ERR! message tunneling socket could not be established, cause=connect ETIMEDOUT
npm ERR! Error: socket hang up
npm ERR!     at createHangUpError (http.js:1253:15)
npm ERR!     at Socket.socketCloseListener (http.js:1304:23)
npm ERR!     at Socket.EventEmitter.emit (events.js:88:17)
npm ERR!     at Socket._destroy.destroyed (net.js:358:10)
npm ERR!     at process.startup.processNextTick.process._tickCallback (node.js:244:9)
npm ERR!  { [Error: socket hang up] code: 'ECONNRESET' }
npm ERR! 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"
npm ERR! cwd E:\myFindings\nodejs_programs\node
npm ERR! node -v v0.8.0
npm ERR! npm -v 1.1.32
npm ERR! code ECONNRESET
npm ERR! message socket hang up
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR!     E:\myFindings\nodejs_programs\node\npm-debug.log
npm ERR! not ok code 0

I am unable to understand what is the problem, please help me to sort out 我无法理解问题所在,请帮助我进行解决

I even try to install express without using the .json file but getting the same error 我什至尝试在不使用.json文件的情况下安装express,但出现相同的错误

contents of my npm config list 我的npm配置列表的内容

E:\myFindings\nodejs_programs\node>npm config list
; cli configs

; userconfig C:\Users\sudipkumars\.npmrc
https-proxy = "http://sudip:sudip7@proxy:8086/"
proxy = "http://sudip:sudip7@proxy:8086/%20strict-ssl%20=%20false"
registry = "https://registry.npmjs.org/"

; builtin config C:\Program Files\nodejs\node_modules\npm\npmrc
prefix = "C:\\Users\\sudipkumars\\AppData\\Roaming\\npm"

; node install prefix = C:\Program Files
; node bin location = C:\Program Files\nodejs\\node.exe
; cwd = E:\myFindings\nodejs_programs\node
; HOME = C:\Users\sudipkumars
; 'npm config ls -l' to show all defaults.

I tried your suggestion 我尝试过你的建议

npm config set registry http://registry.npmjs.org/ npm配置设置注册表http://registry.npmjs.org/

and output is 和输出是

E:\myFindings\nodejs_programs\node>npm install express
npm http GET http://registry.npmjs.org/express
npm http 304 http://registry.npmjs.org/express
npm http GET http://registry.npmjs.org/express/-/express-3.4.8.tgz
npm ERR! Error: getaddrinfo ENOENT
npm ERR!     at errnoException (dns.js:31:11)
npm ERR!     at Object.onanswer [as oncomplete] (dns.js:123:16)
npm ERR!  { [Error: getaddrinfo ENOENT] code: 'ENOTFOUND', errno: 'ENOTFOUND', syscall: 'getaddrinfo' }
npm ERR! 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>

In terms of understanding the issue. 在理解问题上。 The problem lies with your computer not being able to establish a connection with: https://registry.npmjs.org/express/-/express-3.4.8.tgz 问题在于您的计算机无法与以下设备建立连接: https : //registry.npmjs.org/express/-/express-3.4.8.tgz

It is attempting to use the HTTP GET Method to retrieve the file from the server at the NPM registry but it seems it is timing out: 它正在尝试使用HTTP GET方法在NPM注册表中从服务器检索文件,但似乎已超时:

npm http GET https://registry.npmjs.org/express/-/express-3.4.8.tgz
npm ERR! Error: tunneling socket could not be established, cause=connect ETIMEDOUT

This could be for a few reasons but I'll mention two main causes: 这可能是出于几个原因,但我将提及两个主要原因:

  1. Downtime at npmjs.org, easily checked with http://status.npmjs.org/ npmjs.org的停机时间,可通过http://status.npmjs.org/轻松检查
  2. You're behind a proxy preventing this 您在防止这种情况的代理人背后

Looking at your npm config: 查看您的npm配置:

  • Unless you have a proxy setup called proxy then this won't work. 除非您有一个称为proxy的代理设置,否则它将无法正常工作。 So clear the proxy variables set 所以清除代理变量集
  • Set strict SSL to false using npm config set strict-ssl false 使用npm config set strict-ssl false将strict SSL设置为false npm config set strict-ssl false
  • If these two don't work, attempt to set the registry to use a non encrypted connection using npm config set registry http://registry.npmjs.org/ 如果这两个都不起作用,请尝试使用npm config set registry http://registry.npmjs.org/设置为使用非加密连接

I solved this issue by issuing the following commands 我通过发出以下命令解决了这个问题

npm config set proxy false
npm cache clean

运行以下命令

npm install express

解决方法: npm config set registry= http://registry.npmjs.org/效果很好。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM