Skip to content

Instantly share code, notes, and snippets.

@davidsaccavino
Created August 18, 2018 15:30
Show Gist options
  • Save davidsaccavino/c24ae1d4d49c781a431f2034b60a122b to your computer and use it in GitHub Desktop.
Save davidsaccavino/c24ae1d4d49c781a431f2034b60a122b to your computer and use it in GitHub Desktop.
const io = require('socket.io')();
io.on('connection', (client) => {
client.on('chat message', msg => {
console.log(msg);
io.emit('message', msg);
});
});
const port = 8000;
io.listen(port);
console.log('listening on port ', port);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment