无法在公司代理下安装npm

时间:2016-07-25 19:19:52

标签: node.js proxy npm babel

我已尝试过此链接中提供的所有内容:

Using npm behind corporate proxy .pac

但是我仍然无法安装webpack和babel。

我被告知如果我从nodejs获得npm,那么我需要修改我的路径以避免使用那个。默认情况下,npm将转到C:\Users\username\xxxx。所以,我将路径更新为:%PATH%;C:\Users\username\xxxx;C:\util\nodejs。但我只在路径C:\ Users \ username \ xxx&下面有一个空的npm文件夹。不过,它只是从nodejs读取npm。

即使npm install npm -g也无效(相同的代理错误)。

1 个答案:

答案 0 :(得分:0)

使用设置代理: npm config设置https-proxy http://your_proxy_ip:port

检查 npm配置列表或npm配置获取注册表

如果返回: 注册表=“ http://registry.npmjs.org/

然后运行命令: npm config set注册表https://registry.npmjs.org/

现在尝试运行: npm install

,然后运行: npm start

应该可以。