npm 设置代理服务器

Try test it checking the address of the repository if is not blocked on your network.

Always check settings:

npm config list

My settings behind a proxy:

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

https://github.com/npm/npm/issues/9401

npm install microtime –registry=http://r.cnpmjs.org –disturl=http://dist.cnpmjs.org

npm设置代理通常用于网络受限的环境,使得npm可以通过代理服务器访问外部资源。设置代理的步骤如下: 1. 首先,你需要知道代理服务器的地址和端口。这些信息通常由你的网络管理员提供,或者你可以根据你的网络环境自行配置。 2. 设置HTTP代理: 如果你只需要设置HTTP代理,可以通过npm配置命令来设置。打开命令行工具,并输入以下命令,将`<proxy-host>`和`<proxy-port>`替换为你的代理服务器地址和端口: ``` npm config set proxy http://<proxy-host>:<proxy-port> ``` 3. 设置HTTPS代理: 如果你还需设置HTTPS代理,可以使用类似的命令: ``` npm config set https-proxy http://<proxy-host>:<proxy-port> ``` 4. 如果你需要为特定的npm仓库设置代理,可以使用以下命令: ``` npm config set proxy http://<proxy-host>:<proxy-port> --scope=<scope> npm config set https-proxy http://<proxy-host>:<proxy-port> --scope=<scope> ``` 其中`<scope>`是npm仓库的作用域(scope),如果未指定,默认为全局设置。 5. 如果你的代理服务器需要认证,你需要额外设置用户名和密码: ``` npm config set proxy http://<username>:<password>@<proxy-host>:<proxy-port> npm config set https-proxy http://<username>:<password>@<proxy-host>:<proxy-port> ``` 6. 如果你想要移除代理设置,可以将`<proxy-host>:<proxy-port>`部分替换为`null`: ``` npm config delete proxy npm config delete https-proxy ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值