When I\'m trying to install grunt
via npm
, I\'m getting a following error:
C:\\Program Files\\nodejs\\node_modules\\npm>npm inst
The three thing to make npm working well inside the proxy network .
This set npm registry , By default it may take https.
npm config set registry "http://registry.npmjs.org/"
Second is two set proxy in your system . If your organization use proxy or you.
npm config set proxy "http://username:password@proxy-url:proxy-port"
npm config set https-proxy "http://username:password@proxy-url:proxy-port"