<?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>NodeJS &#8211; 「马马虎虎」</title>
	<atom:link href="https://www.gek6.cn/category/web-service/nodejs/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.gek6.cn</link>
	<description>极客蜗牛-开发效率很慢的...</description>
	<lastBuildDate>Tue, 04 Jul 2023 07:11:08 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>

<image>
	<url>https://www.gek6.cn/wp-content/uploads/2021/12/20211205200322145-32x32.png</url>
	<title>NodeJS &#8211; 「马马虎虎」</title>
	<link>https://www.gek6.cn</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>nvm安装Node16.x 使用npm安装任何依赖报错语法错误的问题</title>
		<link>https://www.gek6.cn/nvm%e5%ae%89%e8%a3%85node16-x-%e4%bd%bf%e7%94%a8npm%e5%ae%89%e8%a3%85%e4%bb%bb%e4%bd%95%e4%be%9d%e8%b5%96%e6%8a%a5%e9%94%99%e8%af%ad%e6%b3%95%e9%94%99%e8%af%af%e7%9a%84%e9%97%ae%e9%a2%98/</link>
					<comments>https://www.gek6.cn/nvm%e5%ae%89%e8%a3%85node16-x-%e4%bd%bf%e7%94%a8npm%e5%ae%89%e8%a3%85%e4%bb%bb%e4%bd%95%e4%be%9d%e8%b5%96%e6%8a%a5%e9%94%99%e8%af%ad%e6%b3%95%e9%94%99%e8%af%af%e7%9a%84%e9%97%ae%e9%a2%98/#respond</comments>
		
		<dc:creator><![CDATA[lane]]></dc:creator>
		<pubDate>Tue, 04 Jul 2023 07:11:08 +0000</pubDate>
				<category><![CDATA[NodeJS]]></category>
		<guid isPermaLink="false">https://www.gek6.cn/?p=149</guid>

					<description><![CDATA[报错信息： npm ERR!Un&#46;&#46;&#46;]]></description>
										<content:encoded><![CDATA[<p>报错信息：</p>
<pre><code>npm ERR!Unexpected token &#039;.&#039;</code></pre>
<h3>解决方案：</h3>
<ol>
<li>升级nvm版本 <a href="https://github.com/coreybutler/nvm-windows/releases">GitHub下载地址</a></li>
<li>卸载需要用的Node版本，再安装一遍即可
<ul>
<li><code>nvm uninstall 16.18.0</code></li>
<li><code>nvm install 16.18.0</code></li>
<li><code>nvm use 16.18.0</code></li>
</ul>
</li>
</ol>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gek6.cn/nvm%e5%ae%89%e8%a3%85node16-x-%e4%bd%bf%e7%94%a8npm%e5%ae%89%e8%a3%85%e4%bb%bb%e4%bd%95%e4%be%9d%e8%b5%96%e6%8a%a5%e9%94%99%e8%af%ad%e6%b3%95%e9%94%99%e8%af%af%e7%9a%84%e9%97%ae%e9%a2%98/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>远程服务器终端 log保活</title>
		<link>https://www.gek6.cn/%e8%bf%9c%e7%a8%8b%e6%9c%8d%e5%8a%a1%e5%99%a8%e7%bb%88%e7%ab%af-log%e4%bf%9d%e6%b4%bb/</link>
					<comments>https://www.gek6.cn/%e8%bf%9c%e7%a8%8b%e6%9c%8d%e5%8a%a1%e5%99%a8%e7%bb%88%e7%ab%af-log%e4%bf%9d%e6%b4%bb/#respond</comments>
		
		<dc:creator><![CDATA[lane]]></dc:creator>
		<pubDate>Tue, 08 Dec 2020 11:47:49 +0000</pubDate>
				<category><![CDATA[NodeJS]]></category>
		<guid isPermaLink="false">https://www.gek6.cn/?p=59</guid>

					<description><![CDATA[痛点：直接在服务器上远程开发Eg&#46;&#46;&#46;]]></description>
										<content:encoded><![CDATA[<blockquote>
<p>痛点：直接在服务器上远程开发Egg.js 的服务。<br />
运行的dev终端 在下次打开时希望能继续看到 log</p>
</blockquote>
<h2>screen工具</h2>
<p>安装</p>
<pre><code class="language-bash">yum install screen -y</code></pre>
<p>1、新建一个screen窗口</p>
<pre><code class="language-bash">screen -S cmdname</code></pre>
<p>2、查看 窗口列表</p>
<pre><code class="language-bash">screen -ls</code></pre>
<p>3、退出当前的screen窗口</p>
<pre><code class="language-bash">exit</code></pre>
<p>4、进入（重连）到某个 窗口</p>
<p>10732 为第二步中查出来的ID</p>
<pre><code class="language-bash">screen -r 10732</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gek6.cn/%e8%bf%9c%e7%a8%8b%e6%9c%8d%e5%8a%a1%e5%99%a8%e7%bb%88%e7%ab%af-log%e4%bf%9d%e6%b4%bb/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>NVM 使用</title>
		<link>https://www.gek6.cn/nvm-%e4%bd%bf%e7%94%a8/</link>
					<comments>https://www.gek6.cn/nvm-%e4%bd%bf%e7%94%a8/#respond</comments>
		
		<dc:creator><![CDATA[lane]]></dc:creator>
		<pubDate>Tue, 08 Dec 2020 11:44:48 +0000</pubDate>
				<category><![CDATA[NodeJS]]></category>
		<guid isPermaLink="false">https://www.gek6.cn/?p=57</guid>

					<description><![CDATA[一、安装 windows 下载安&#46;&#46;&#46;]]></description>
										<content:encoded><![CDATA[<h2>一、安装</h2>
<h3>windows</h3>
<h4>下载安装</h4>
<p>github直接下载最新安装包  一键安装<br />
<a href="https://github.com/coreybutler/nvm-windows/releases">https://github.com/coreybutler/nvm-windows/releases</a><br />
nvm-noinstall.zip：绿色免安装版，但使用时需进行 环境变量配置。<br />
nvm-setup.zip：安装版，推荐使用</p>
<h4>修改下载源</h4>
<p>nvm安装目录\settings.txt<br />
node_mirror: <a href="https://npm.taobao.org/mirrors/node/">https://npm.taobao.org/mirrors/node/</a><br />
npm_mirror: <a href="https://npm.taobao.org/mirrors/npm/">https://npm.taobao.org/mirrors/npm/</a></p>
<h3>linux</h3>
<p>下载安装</p>
<pre><code class="language-bash">curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash</code></pre>
<p>修改下载源</p>
<pre><code class="language-bash">export NVM_NODEJS_ORG_MIRROR=http://npm.taobao.org/mirrors/node</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gek6.cn/nvm-%e4%bd%bf%e7%94%a8/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
