<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Webstorm</title>
	<atom:link href="https://www.hu365.dev/blog/tag/webstorm/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.hu365.dev</link>
	<description>Justin Woo（吴晓虎）的个人博客，生命不息，学习不止</description>
	<lastBuildDate>Sun, 18 Feb 2024 01:34:17 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.3</generator>

<image>
	<url>https://www.hu365.dev/wp-content/uploads/2022/10/cropped-logo-正矩形.blue_-32x32.png</url>
	<title>Webstorm</title>
	<link>https://www.hu365.dev</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>webstorm的代理设置</title>
		<link>https://www.hu365.dev/blog/2023/02/301/</link>
		
		<dc:creator><![CDATA[Justin]]></dc:creator>
		<pubDate>Sun, 05 Feb 2023 00:47:00 +0000</pubDate>
				<category><![CDATA[前端笔记]]></category>
		<category><![CDATA[JetBrains]]></category>
		<category><![CDATA[Webstorm]]></category>
		<guid isPermaLink="false">https://www.hu365.dev/?p=301</guid>

					<description><![CDATA[一：自身代理配置 官方文档：HTTP Proxy &#124; WebStorm Documentation (jetbrains.com)影响插件、工具下载等常用请求 二：Git代理配置 影响代码仓库的拉取、推送及git的其他请求 三：Npm代理配置 影响npm下载、 <a href="https://www.hu365.dev/blog/2023/02/301/" class="cosmoswp-btn">阅读更多</a>]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">一：自身代理配置</h2>



<p>官方文档：<a href="https://www.jetbrains.com/help/webstorm/settings-http-proxy.html">HTTP Proxy | WebStorm Documentation (jetbrains.com)</a><br>影响插件、工具下载等常用请求</p>



<h2 class="wp-block-heading">二：Git代理配置</h2>



<pre class="EnlighterJSRAW" data-enlighter-language="powershell" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">#设置全局代理
git config --global http.proxy http://127.0.0.1:10811
git config --global https.proxy https://127.0.0.1:10811
git config --global http.proxy socks5://127.0.0.1:10810
git config --global https.proxy socks5://127.0.0.1:10810

#只对github.com使用代理，其他仓库不走代理
git config --global http.https://github.com.proxy socks5://127.0.0.1:10810
git config --global https.https://github.com.proxy socks5://127.0.0.1:10810
#取消github代理
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy

#取消全局代理
git config --global --unset http.proxy
git config --global --unset https.proxy</pre>



<p>影响代码仓库的拉取、推送及<code>git</code>的其他请求</p>



<h2 class="wp-block-heading">三：Npm代理配置</h2>



<pre class="EnlighterJSRAW" data-enlighter-language="powershell" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">#直接代理
npm config set proxy http://127.0.0.1:18011
npm config set https-proxy https://127.0.0.1:18011

#授权代理
npm config set proxy http://username:password@127.0.0.1:18011
npm config set https-proxy https://username:password@127.0.0.1:18011

#取消代理
npm config delete proxy
npm config delete https-proxy</pre>



<p>影响<code>npm</code>下载、推送等</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
