Skip to content

Instantly share code, notes, and snippets.

@pchinjr
Last active February 14, 2018 15:29
Show Gist options
  • Save pchinjr/046db80351ea43774cf76d5fd9dc6caa to your computer and use it in GitHub Desktop.
Save pchinjr/046db80351ea43774cf76d5fd9dc6caa to your computer and use it in GitHub Desktop.
//Server Side Code
const io = require('socket.io')(server);
io.on('connection', function(socket) {
console.log('Your socket id is', socket.id);
socket.on('eventName', function doSomething() {
console.log('executing doSomething')
})
});
//Client Side Code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment