2

I am getting an error when installing Ionic framework in node js. I am behind a proxy but I already set-up my node config to a proper proxy.

Here is the error message:

error network tunneling socket could not be established, cause=read ECONNRESET error network This is most likely not a problem with npm itself error network and is related to network connectivity. error network In most cases you are behind a proxy or have bad network settings. error network error network If you are behind a proxy, please make sure that the error network 'proxy' config is set properly. See: 'npm help confi

Nikola
  • 14,888
  • 21
  • 101
  • 165
Ramppy Dumppy
  • 2,667
  • 7
  • 27
  • 37

2 Answers2

0

Try installing older version of Node(0.10.38).

Already answere here https://stackoverflow.com/a/31124491/1276616

Community
  • 1
  • 1
Anil Singh
  • 4,293
  • 2
  • 24
  • 19
0

Try to use this

1) Check if u have a proxy

npm config get proxy

2) If u have, remove them

npm config rm proxy 
npm config rm https-proxy

I hope be useful.

Source: How clear proxy npm

Community
  • 1
  • 1