centos6 nodejs 安装测试

centos6:http://down.zhbit.com/downloads/system_iso/CentOS-6.0-i386-LiveCD.iso

安装

挨个执行以下命令。
创建文件夹 mkdir /usr/local/node
cd /usr/local/node
wget http://nodejs.org/dist/v0.6.14/node-v0.6.14.tar.gz
tar zxvf node-v0.6.14.tar.gz
cd node-v0.6.14
./configure (这一步看看少什么,新安装的centos6 会少 gcc-c++ openssl,执行下面两行命令安装这些)
yum install gcc-c++
yum install openssl-devel
make(这个命令可能也需要先安装:yum -y install gcc automake autoconf libtool make)
make install

测试
cd /usr/local/node/code
vim hello_node.js
输入以下代码:
var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('pairwinter');
}).listen(8088);
console.log('Server running at http://127.0.0.1:8088/');
运行:
node hello_node.js
访问:
http://127.0.0.1:8088/
输出:pairwinter


你可能感兴趣的:(js,node)