Reputation: 41
I am getting below error while trying to install angular CLI.
Below snap for office proxy:
This snap for client proxy:
Please help any one..
Upvotes: 1
Views: 75
Reputation: 74738
We also had similar issues in our office proxy. Then what we did, we added the proxy to the .npmrc
file with this command:
npm config set proxy http://username:password@proxyurl:port
npm config set http_proxy http://username:password@proxyurl:port
npm config set https_proxy https://username:password@proxyurl:port
and it all worked for us.
Upvotes: 1