npm default proxy code example
Example 1: setting proxy in npm
npm config set proxy http://username:password@host:port
npm config set https-proxy http://username:password@host:port
Example 2: npm unset proxy
npm config rm proxy
npm config rm https-proxy