Set Corporate Proxy on NPM

Please use the following code to set the proxy
1npm config set proxy http://username:pass@server.com:port2npm config set https-proxy http://username:pass@server.com:port
Please replace username
, password
, proxyserver.com
, port
with your details, it will look something like this:
1npm config set proxy http://abhi:hipass@abheist.com:80802npm config set https-proxy http://abhi:hipass@abheist.com:8080
🙏