2017-10-07 62 views
1

我剛剛創建了一個新的.NET核2.0 Angualar項目模板,並獲得恢復包一個奇怪的錯誤。輸出NPM安裝是給錯誤:連接ETIMEDOUT(無代理)

部分:輸出

npm ERR! fetch failed https://registry.npmjs.org/extend/-/extend-3.0.1.tgz 
npm WARN retry will retry, error on last attempt: Error: connect ETIMEDOUT 151.101.0.162:443 

後來部分:

我發現
23980 error argv "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Web\\External\\Node.exe" "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Web\\External\\node_modules\\npm\\bin\\npm-cli.js" "install" 
23981 error node v5.4.1 
23982 error npm v3.3.4 
23983 error code ETIMEDOUT 
23984 error errno ETIMEDOUT 
23985 error syscall connect 
23986 error network connect ETIMEDOUT 151.101.0.162:443 
23986 error network This is most likely not a problem with npm itself 
23986 error network and is related to network connectivity. 
23986 error network In most cases you are behind a proxy or have bad network settings. 
23986 error network 
23986 error network If you are behind a proxy, please make sure that the 
23986 error network 'proxy' config is set properly. See: 'npm help config' 
23987 verbose exit [ 1, true ] 

大多數解決方案是如何設置的代理。我沒有代理。

我還發現this answer

npm config set proxy false 
npm cache clean 

這什麼也不做改變。

我也重置了我的網絡適配器和PC。我也試過ipconfig -flushdns

tracert也工作正常:

Routenverfolgung zu a.sni.fastly.net [151.101.0.162] 
über maximal 30 Hops: 

    1  4 ms  1 ms <1 ms 192.168.1.1 
    2 28 ms 28 ms 28 ms loopback0.80.rdsl.99.nue.de.net.telefonica.de [62.52.195.28] 
    3 34 ms 29 ms 27 ms bundle-ether3.0001.dbrx.01.nue.de.net.telefonica.de [62.53.3.154] 
    4  *  *  *  Zeitüberschreitung der Anforderung. 
    5 34 ms 36 ms 32 ms ae14-0.0001.corx.01.fra.de.net.telefonica.de [62.53.22.86] 
    6 32 ms 32 ms 32 ms bundle-ether15.0002.dbrx.02.fra.de.net.telefonica.de [62.53.26.0] 
    7 31 ms 38 ms 36 ms ae6-0.0001.prrx.11.fra.de.net.telefonica.de [62.53.19.146] 
    8 31 ms 30 ms 31 ms fastly2.fra.ecix.net [62.69.146.89] 
    9 33 ms 31 ms 35 ms 151.101.0.162 

Ablaufverfolgung beendet. 

如果我打電話https://registry.npmjs.org/extend/-/extend-3.0.1.tgz在瀏覽器中,我得到的下載提供的包。

任何指針?

回答

1

我不知道發生了什麼......

但作爲一個解決辦法,我已經安裝了Node MSI,並configured visual studio用這個來代替。

工具>選項>項目&解決方案>網絡管理軟件包>外部Web工具

GUI

現在正在工作。但是我覺得使用這種解決方法是錯誤的。如果有人有一些指點,如何解決這個問題的根源,我會很樂意。

+1

對於VS2017(15.6.1)的當前版本中,路徑爲:'工具>選項>項目和解決方案>網絡管理軟件包>外部Web Tools' –

+0

也找不到哪裏出了問題,因爲這是一個新的安裝無論如何,使用解決方法並繼續... –