centos下node.js的安装
2020-12-13 02:16
标签:blog class code tar ext http 安装的路径我举例在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,键入如下代码 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的安装,搜素材,soscw.com centos下node.js的安装 标签:blog class code tar ext http 原文地址:http://www.cnblogs.com/xingmeng/p/3716254.html
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/‘
);