是否可以安装节点无效脱机代理

我正在尝试使用npm安装node-sass模块,但是每次显示有关网络配置问题的错误,这是因为我正在使用代理和私有注册表,这是错误:

This is most likely not a problem with node-gyp or the package itself and is related to network connectivity In most cases you are behind a proxy or have bad network setting 

在此处输入图片说明

可以离线安装此模块吗?

宝儿猪猪2020/03/27 20:11:22

在尝试在公司代理后面安装node-sass时,我遇到了类似的问题。

您可以尝试的是:

  1. 从此处本地下载:https : //github.com/sass/node-sass/releases(根据您的操作系统选择合适的)
  2. 使用二进制配置参数–sass-binary-path安装它。

    npm install --sass-binary-path="C:\src\v4.7.2\win32-x64-57_binding.node"