Skip to content

Instantly share code, notes, and snippets.

@nhunzaker
Created February 12, 2012 01:55
Show Gist options
  • Save nhunzaker/1805766 to your computer and use it in GitHub Desktop.
Save nhunzaker/1805766 to your computer and use it in GitHub Desktop.
app.start(8080);
var io = require('socket.io').listen(app.server);
io.sockets.on('connection', function(socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function(data) {
console.log(data);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment