武夷岩茶大魔王 發表於 2024-8-23 00:00:00

Centos 编译安装nodejs&express框架的方法

<p style="margin: 0px; padding: 5px 0px; outline: none; font-size: 14px; line-height: 30px; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;"><strong>一. 下载nodejs 版本</strong></p><div class="jb51code" style="margin: 0px; padding: 0px; outline: none; line-height: 25.2px; font-size: 14px; width: 660px; overflow: hidden; clear: both; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;"><pre class="brush:bash;">wget&nbsp;http://nodejs.org/dist/v0.10.28/node-v0.10.28.tar.gz</pre></div><p style="margin: 0px; padding: 5px 0px; outline: none; font-size: 14px; line-height: 30px; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;"><strong>二. 编译安装</strong></p><div class="jb51code" style="margin: 0px; padding: 0px; outline: none; line-height: 25.2px; font-size: 14px; width: 660px; overflow: hidden; clear: both; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;"><pre class="brush:bash;">cp&nbsp;node-v0.10.28.tar.gz&nbsp;/usr/src/
cd&nbsp;/usr/src
tar&nbsp;zxvf&nbsp;node-v0.10.28.tar.gz
cd&nbsp;node-v0.10.28/
./configuration&nbsp;--prefix=/usr/local/node
make&amp;make&nbsp;install</pre></div><p style="margin: 0px; padding: 5px 0px; outline: none; font-size: 14px; line-height: 30px; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;">
        设置环境变量</p><div class="jb51code" style="margin: 0px; padding: 0px; outline: none; line-height: 25.2px; font-size: 14px; width: 660px; overflow: hidden; clear: both; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;"><pre class="brush:bash;">vi&nbsp;/etc/profile
###############
最后一行添加
export&nbsp;PATH=$PATH:/usr/local/node/bin</pre></div><p style="margin: 0px; padding: 5px 0px; outline: none; font-size: 14px; line-height: 30px; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;"><strong>三. 安装express</strong></p><div class="jb51code" style="margin: 0px; padding: 0px; outline: none; line-height: 25.2px; font-size: 14px; width: 660px; overflow: hidden; clear: both; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;"><pre class="brush:bash;">npm&nbsp;install&nbsp;express&nbsp;-gd
npm&nbsp;install&nbsp;express-generator</pre></div><p>
        &nbsp;</p>
頁: [1]
查看完整版本: Centos 编译安装nodejs&express框架的方法