Skip to content

Instantly share code, notes, and snippets.

@jsstoni
Created May 14, 2015 17:41
Show Gist options
  • Save jsstoni/0e7f5c96be4f1ccb984e to your computer and use it in GitHub Desktop.
Save jsstoni/0e7f5c96be4f1ccb984e to your computer and use it in GitHub Desktop.
socket.io server
var io = require("socket.io")();
io.on('connection', function(socket) {
socket.on('evento', function(data) {
console.log(data.nombre);
});
});
io.listen(1515);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment