How to clear https proxy setting of NPM?

前端 未结 30 2337
长发绾君心
长发绾君心 2020-11-29 14:59

How can I clear the previous ssl proxy setting of NPM? well, I search a lot, but all post I got is mainly about how to set proxy in corporate network.

30条回答
  •  一个人的身影
    2020-11-29 15:34

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

    then

    npm config get proxy
    

    null

    also

    npm i -g bower to update
    

    npm had a bug on the proxy

提交回复
热议问题