npm config http/https proxy

npm --proxy http://username:password@server:port install packagename
npm config set proxy http://username:password@server:port
npm config set https-proxy http://username:password@server:port
 
npm config set strict-ssl false
npm config set registry "http://registry.npmjs.org/"


npm config rm proxy
npm config rm https-proxy

Comments

Popular posts from this blog

react-native run-android : do not build/update modified code(App.js)

react-native run-android : sun.security.provider.cert path.SunCertPathBuilderException : unable to find valid certification path to req uested target

How to fix error : no module named sendgrid when try to use sendgrid python lib in PHP.