Reputation: 1662
When I am trying to install the angular client. I am getting the following error. I tried in implementing the suggestions of such similar issues from github, sof nothing seems to be worked out. Here is the issue.
Upvotes: 0
Views: 369
Reputation: 265
Try this:
npm config set proxy http://username:password@host:port
npm config set https-proxy http://username:password@host:port
npm config set strict-ssl false
And then it should work fine
Upvotes: 1