Posted in Javascript onNovember 30, 2011
1.安装依赖包
sudo apt-get install g++ curl libssl-dev apache2-utils sudo apt-get install git-core
2.下载源代码
git clone git://github.com/ry/node.git
这一步是因网络状况较差一直显示 Cloning to node...
可以从官网上直接下载源代码,解压到帐号的文件夹里。
文件名改为了node。
3.编译
三句命令:
./configure make sudo make install
安装成功后截图:
4.测试
编写如下小程序,命名为example.js,保存在node文件夹下。
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello Node.jsn'); }).listen(8124, "127.0.0.1"); console.log('Server running at http://127.0.0.1:8124/');
执行如下命令:
运行结果:
后面为应用方便,还应当设置环境变量,安装npm,之类的工作吧?
刚刚入手,还有待进一步学习...
烦人的保密检查,整理资料去了...
Ubuntu 11.10 安装Node.js的方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@