ETIMEDOUT Error while installing Node packages on Windows

前端 未结 10 861
日久生厌
日久生厌 2020-12-03 10:18

I am trying to install node packages on my windows machine using npm from a fresh install of node.

however, I am getting ETIMEDOUT errors. I checked few other stacko

10条回答
  •  死守一世寂寞
    2020-12-03 11:02

    First, run npm config list and check whether you are behind a proxy. If so, try running

    npm config delete proxy
    npm config delete http-proxy
    npm config delete https-proxy
    

    as required

    **If this method did not work, reinstall nodejs.

提交回复
热议问题