NodeJs,GitHub和IONIC连接的代理问题

时间:2015-03-11 09:31:38

标签: node.js github proxy ionic-framework

我的贡献

我无法下载我的工作依赖项 我有错误连接,代理问题

1 个答案:

答案 0 :(得分:1)

这是我的贡献

当你在一家公司工作时,从NodeJs安装任何软件包,这家公司有一个代理,这些代码解决了我在工作中的生活。我希望有用:

// when you have a package.json and you need install all
npm --proxy http://<your_account>:<your_password>@<ip_address>:<port_number> install

// Set as an environment proxy
npm config set proxy http://<your_account>:<your_password>@<ip_address>:<port_number>
npm config set https-proxy http://<your_account>:<your_password>@<ip_address>:<port_number>


// this is when you have some packages(dependencies) and those are stored on Github
git config --global http.proxy http://<your_account>:<your_password>@<ip_address>:<port_number>
git config --global https.proxy http://<your_account>:<your_password>@<ip_address>:<port_number>

// if you start with IONIC you will need set on the environment the proxy
set PROXY=http://<your_account>:<your_password>@<ip_address>:<port_number>

见大家