Centos7中源码安装Nodejs
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7中源码安装Nodejs相关的知识,希望对你有一定的参考价值。
Step 1、确认服务器有nodejs编译及依赖相关软件,如果没有可通过运行以下命令安装。
[[email protected] local]# yum -y install gcc gcc-c++ openssl-devel
Step 2、下载NodeJS源码包并解压。
[[email protected] local]# wget http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz
[[email protected] node-v0.10.24]# ./configure --prefix=/usr/local/node
[[email protected] node-v0.10.24]# vim /etc/profile
[[email protected] node-v0.10.24]# node -v
v0.10.24
[[email protected] node-v0.10.24]# node
> console.log(”Hello NodeJS, I‘m Bob.Z“);
Hello NodeJS, I‘m Bob.Z
undefined
>
[[email protected] local]# npm install express -g
[[email protected] local]# express DemoApp
[[email protected] local]# cd DemoApp
[[email protected] DemoApp]#
[[email protected] local]# cd DemoApp
[[email protected] DemoApp]# npm install
[[email protected] DemoApp]# node app
Express server listening on port 3000
Express
Welcome to Express
以上是关于Centos7中源码安装Nodejs的主要内容,如果未能解决你的问题,请参考以下文章