In work I have a proxy server and install it in npm
npm config set proxy http:
npm config set https-proxy https:
Without work, I do not have a proxy server and I need to delete it in npm.
I tried
npm config rm proxy
npm config rm https-proxy
and
npm config delete proxy
npm config delete https-proxy
but when i use
npm config get proxy
npm config get https-proxy
proxy server still exists
How to remove proxy server in npm
source
share