Skip to content

Instantly share code, notes, and snippets.

@thash
Created May 17, 2011 16:04
Show Gist options
  • Save thash/976744 to your computer and use it in GitHub Desktop.
Save thash/976744 to your computer and use it in GitHub Desktop.
io = require('socket.io');
var socket = io.listen(app);
socket.on('connection', function(client) {
client.on('message', function(data) {
client.broadcast(data);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment