在Ubuntu服务器上安装Node.js

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
# 编译的模块比较多,可能也要等一会儿

检查:

1
make test

安装:

1
make install

上面安装完毕,我们现在创建一个测试文件:
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 安装成功。

1
Hello World
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值