8715. Building Socket.IO Application with ExpressJS[Draft]
Node.js


Tutorial for how to create web application with Socket.IO and ExpressJs.

var app = express()
server = require('http').createServer(app)
io = io.listen(server);

server.listen(80);

4. References