In work I have a proxy and set this in npm
npm config set proxy http://theproxy:8080
npm config set https-proxy https://theproxy:8080
Out of work I don't have the proxy and need to remove it in npm.
I've 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
the proxy is still there
How do I remove the proxy in npm