I have already set proxy configurations in .npmrc file. Executing the npm install command gives me error as follows\"
$ npm install npm ERR! Windows_
Does your proxy URL have '@' symbol in it? @ symbol separates the user ID and password from the URL. If it does, you can try using '%40' to replace it.
Also, it is https-proxy not http_proxy.
A correct config would look like -
registry=https://registry.npmjs.org/
proxy=http://username:password@proxydomain:8080/
https-proxy=https://username:password@proxydomain:8080/
https://docs.npmjs.com/misc/config#proxy