node.js
$ cd ~
$ apt-get update
$ apt-get install g++ curl libssl-dev apache2-utils
$ apt-get install git-core
$ git clone git://github.com/ry/node.git
$ cd node
$ git fetch --all
$ ./configure
$ make
$ make install
$ vim hello_node.js
$ node hello_node.js
$ cd ~
$ apt-get update
$ apt-get install g++ curl libssl-dev apache2-utils
$ apt-get install git-core
$ git clone git://github.com/ry/node.git
$ cd node
$ git fetch --all
$ ./configure
$ make
$ make install
$ vim hello_node.js
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello Node.js\n');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/');
$ node hello_node.js