npm ERR! network getaddrinfo ENOTFOUND

前端 未结 17 965
傲寒
傲寒 2020-12-02 18:12

I am getting npm ERR! network getaddrinfo ENOTFOUND error while trying to install any package using NPM. I know there are numerous threads on the same issue but

17条回答
  •  無奈伤痛
    2020-12-02 18:45

    I was setting proxy as

    npm config set http_proxy=http://domain:8080
    

    instead of using the correct way

    npm config set proxy http://domain:8080
    

提交回复
热议问题