Socket.IO
var http = require('http');
var io = require('socket.io');

var server = http.createServer();
server.listen(80);...