如何清除NPM之前的ssl代理设置? 嗯,我搜索了很多,但我得到的所有帖子主要是关于如何在公司网络中设置代理。

我试图设置代理为空:

npm config set http-proxy
npm config set https-proxy

第一个命令传递,第二个命令警告说:

npm WARN invalid config proxy=""
npm WARN invalid config Must be a full url with 'http://'

警告是否可忽略,我是否已成功清除代理设置?


尝试用以下方法删除它们:

npm config delete proxy
npm config delete https-proxy

我认为不是http-proxy,而是proxy:

npm config set proxy="http://yourproxyhere"

得到完全相同的问题,我一直看到我的代理配置,即使删除npmrc文件和删除键。

我发现npm默认使用windows env key http-proxy。

所以进入计算机->属性->高级系统设置->环境变量,检查是否配置了http-代理密钥。


在默认值下,npm从https://registry.npmjs.org寻找包。您还需要重写注册表和严格ssl值。

npm config set registry "http://registry.npmjs.org"
npm config set strict-ssl false

在我的情况下(基于Ubuntu的Linux Mint 16),我必须:

NPM配置删除http -proxy 清除https_proxy Bash环境参数——奇怪的是,尽管我在任何地方都找不到这个行为,npm回退到https_proxy: $ http_proxy= " https_proxy= " NPM config get http -proxy 零 $ http_proxy= " xxhttps_proxy= " NPM config get http -proxy https://1.2.3.4:8080


以上这些方法对我都没有帮助,但下面这条有用:

npm config rm proxy
npm config rm https-proxy

来源:http://jonathanblog2000.blogspot.ch/2013/11/set-and-reset-proxy-for-git-and-npm.html


如果你浏览npm配置文档,它说:

代理 默认值:HTTP_PROXY或HTTP_PROXY环境变量 零 类型:url

因此,要禁用代理的使用,代理设置必须设置为空。要将代理值设置为空,必须确保没有设置HTTP_PROXY或HTTP_PROXY环境变量。所以取消设置这些环境变量,并确保npm config ls -l显示proxy = null。

此外,重要的是要注意:

仅删除http_proxy和https_proxy配置设置不会 帮助,如果你仍然有HTTP_PROXY或HTTP_PROXY环境变量 设置为什么和 设置注册表使用http://和Setting 如果您没有使用代理,那么对false的严格ssl将对您没有帮助 不管怎样,让HTTP_PROXY设置为某个值。

如果npm把代理的类型设置为布尔值来开启/关闭代理的使用,那就更好了。或者,它们可以引入一个新的boolean类型的use_proxy排序设置。


npm config rm proxy
npm config rm https-proxy
unset HTTP_PROXY
unset HTTPS_PROXY
unset http_proxy
unset https_proxy

该死的,这终于做到了在Debian Jessie与privoxy(广告删除器)安装的技巧,谢谢你:-)


您将从服务器管理员或支持人员处获得代理主机和端口。

在那之后

NPM配置设置http_proxy http://username:password@proxyofmycomp.com:itsport NPM配置设置代理http://username:password@proxyofmycomp.com:itsport 如果密码中有特殊字符,请尝试使用% urlencode。- pound(hash)应该被%23取代。

这对我很管用……


npm config rm proxy
npm config rm https-proxy

为我工作


npm config delete proxy -g

为我工作。

-g很重要,因为最初它是用这个选项设置的。 您可以检查配置设置:

npm config list

好的,“NPM config delete…”是Windows环境的正确命令,反之亦然,“NPM config rm…”是类unix环境的正确命令。 此外,至少对我来说,必须添加“-g”选项,因为该命令可以正常工作


在windows 7中运行npm 2.10.1版本,我使用:

npm config delete proxy
npm config delete https-proxy

请参阅文件C:\Users\myusers.中的npm设置npmrc文件。有时npm代理配置设置不适用。所以值得一查。


我使用

npm config set proxy null
npm config set https-proxy null

这对我很有效。

致以最亲切的问候


这是

npm config delete http-proxy
npm config delete https-proxy

npm config rm proxy
npm config rm https-proxy

set HTTP_PROXY=null
set HTTPS_PROXY=null

npm config delete http-proxy
npm config delete https-proxy

npm config delete proxy -g
npm config delete http-proxy -g

then

npm config get proxy

also

npm i -g bower to update

NPM在代理上有一个错误


这对我有用

proxy=http://<username>:<pass>@proxyhost:<port>

https-proxy=http://<uname>:<pass>@proxyhost:<port>

示例在我的实例用户名:uname和密码:pword

npm config set proxy=http://uname:pword@192.168.5.8:8080

npm config set https-proxy=http://uname:pword@192.168.5.8:8080

从npm中删除任何配置的最简单方法是编辑npm配置文件。只需要两(2)个命令就可以做到这一点;一个用于打开NPM配置文件进行编辑,另一个用于确认您的更改。

输入NPM config list查看所有激活的NPM配置的列表。 输入NPM config edit打开带有NPM配置的文本编辑器。 删除代理行(或简单地将其注释掉)。 保存并关闭配置文件。 输入NPM配置列表以确认代理配置已被删除。

这就是生活!

我尝试了此页上列出的所有东西,没有工作,然后我尝试了配置编辑。它立刻起作用了。(我用的是Windows 10)


This was already answered but I think the --global config is not covered properly. By running npm config rm proxy you remove proxy from user configuration. This can be easily verified by running: npm config list. If there is proxy or https-proxy setting set in global config you have to use --global in the command to remove it. So at the end this will clean-up proxies from both local and global configs: npm config rm proxy npm config rm https-proxy npm config --global rm proxy npm config --global rm https-proxy


以上这些对我都不起作用。我不得不编辑文件。”Npmrc”将在用户主目录下(例如:c:\users\abcuser):

http_proxy=null
registry=https://registry.npmjs.org/
strict-ssl=true
proxy=null

有一种简单的方法可以删除或删除NPM代理。

npm config delete proxy
npm config delete https-proxy

我曾经遇到过同样的问题。 按照以下步骤删除代理值: 1.在npm中删除代理: (-g很重要) NPM配置删除代理 NPM删除http-proxy NPM配置删除http -proxy 使用以下命令检查npm配置文件: NPM配置列表

2.删除系统代理。 设置HTTP_PROXY = null 设置HTTPS_PROXY = null

现在关闭命令行并打开它以刷新变量(代理)。


我已经使用下面的命令来删除任何代理集:

    npm config rm proxy
    npm config rm https-proxy

它解决了我的问题:)


执行NPM配置列表 它将列出所有代理的值。在我的情况下,代理值从全局NPMRC文件中获取,删除它,并能够在我的Windows机器上完成NPM安装


我为此纠结了很久。我最后做的是进入.npmrc文件(可以在用户的目录中找到,后面跟着用户名,例如。C:\Users\erikj/.npmrc),用文本编辑器打开它,手动删除任何代理设置,并将http://设置更改为https://.在这种情况下,这是一个试验是否http或https对你有效的问题。对我来说,https是有效的。图。


Http模块已弃用,并被HttpClient取代。

将导入更改为从'@angular/common/http'导入{HttpClientModule};


好吧,我要把这个放在这里因为我在NPM上遇到了很大的麻烦。

我试图改变一个代理设置使用npm配置设置代理“http://..。然后运行NPM config get proxy。它总是返回一个错误的值,不同于我设置的值。

我发现我在项目上有一个.npmrc committed,我试图运行npm install,这个文件覆盖了我自己的配置。

所以它正在清除代理值,但我还需要更改文件夹项目中的.npmrc。

从那以后,一切都很顺利。


在最新版本中,npm rm代理不工作。应该使用npm rm http-proxy

NPM配置rm代理 NPM配置rm http -proxy


如果你想在公司网络代理和删除家庭/个人网络代理之间切换,你可以使用——no-proxy

示例用法:

npm install --save-dev "@angular/animations@8.2.14" --no-proxy

在我的情况下,(windows操作系统),把所有这些命令列出后,npm继续采取 Windows注册表设置中的代理

\ HKEY_CURRENT_USER \环境

只要删除代理设置,在那之后,我重启电脑,然后“npm install”为我工作

例子


试试这个,

NPM删除http代理

NPM删除http -proxy

NPM配置rm代理

NPM配置rm http -proxy

设置HTTP_PROXY = null

设置HTTPS_PROXY = null


以下是我的解决方案: 步骤1:

Env |grep代理 例如,我有: http_proxy https_proxy

步骤2: 取消设置代理变量

设置http_proxy 设置https_proxy

npm install现在可以正常工作了


这将清除代理从本地和全局配置没有-global它将只清除当前用户配置文件:

NPM配置rm代理 NPM配置rm http -proxy NPM配置——全局rm代理 NPM配置——global rm http -proxy


您可以从.npmrc文件中手动删除代理和http -proxy