http://s3.amazonaws.com/four.livejournal/20091117/jsconf.pdfhttp://simonwillison.net/2009/Nov/23/node/
http://nodejs.org/
Evented I/O for V8 javascript.
//Normal Hello World:
var sys = require("sys");
setTimeout(function () {
sys.puts("world");
}, 2000);
sys.puts("hello");
//HTTP Hello World:
var sys = require('sys'),
http = require('http');
http.createServer(function (req, res) {
setTimeout(function () {
res.sendHeader(200, {'Content-Type': 'text/plain'});
res.sendBody('Hello World');
res.finish();
}, 2000);
}).listen(8000);
sys.puts('Server running at
http://127.0.0.1:8000/');
--
FROM 166.111.39.29