Node.js 是一个 JavaScript 运行环境(runtime)。实际上它是对 GoogleV8 引擎(应用于Google Chrome浏览器)进行了封装。它的代码托管在 github 所以需要安装 git 和编译器:
1
| sudo apt-get install git-core build-essential openssl-devel curl libcurl4-openssl-dev |
从 github 下载 Node.js 源代码:
1
2
3
| cd /usr/local
git clone https://github.com/joyent/node.git
# 速度有点小慢,要耐心等待 |
执行编译:
1
2
| cd node && ./configure && make
# 编译的模块比较多,可能也要等一会儿 |
检查:
安装:
上面安装完毕,我们现在创建一个测试文件:
nano 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, "0.0.0.0");
console.log('Server running at http://0.0.0.0:1337/'); |
执行这个文件:
1
2
| node example.js
#报错: -bash: /usr/sbin/node: No such file or directory |
我估计是 make install 在 ubuntu 上考虑不周导致的,我们将编译好的 node copy到 /usr/sbin 目录中
cp /usr/local/node/out/Release/node /usr/sbin/ |
1
2
| node example.js
# 没有任何反映 |
此时 可以打开浏览器访问 1337 端口 http://192.168.1.254:1337/ 如果得到如下响应则说明 Node.js 安装成功。