centos下node.js的安装

安装的路径我举例在home目录

1.cd /home

2.下载node.js最新版本

wget http://nodejs.org/dist/v0.10.28/node-v0.10.28.tar.gz

3.解压操作

tar -zxvf node-v0.10.28.tar.gz

cd node-v0.10.28

./configure

make

make install

4.看是否安装成功

node -v

如果输出安装的node.js的版本,则表示安装成功

 

测试:

在linux的某个目录下,比如apache工作目录,如/var/www/html

新建文件example.js,键入如下代码

1
2
3
4
5
6
var http = require(‘http‘);
http.createServer(function (req, res) {
    res.writeHead(200, {‘Content-Type‘: ‘text/plain‘});
    res.end(‘Hello World\n‘);
}).listen(1337, "127.0.0.1");
console.log(‘Server running at http://127.0.0.1:1337/);

 listen(1337, "127.0.0.1")这个必须是本机电脑能访问的

然后node example.js,启动该js文件,在本机浏览器中输入127.0.0.1:1337就可以看到浏览器中输出‘Server running at http://127.0.0.1:1337/‘这句话

centos下node.js的安装,布布扣,bubuko.com

centos下node.js的安装

上一篇:网页禁用鼠标右键和复制功能兼容方式


下一篇:JS_SINA股票接口