
How to proxy npm and git when download packages? You can using bash like this...
You can config npm like this
1 | // set proxy |
and git config using --global
1 | git config --global http.proxy http://host:port |

How to proxy npm and git when download packages? You can using bash like this...
You can config npm like this
1 | // set proxy |
and git config using --global
1 | git config --global http.proxy http://host:port |