Skip to content

Instantly share code, notes, and snippets.

@Sleepful
Created February 22, 2019 16:07
Show Gist options
  • Save Sleepful/336ccc55a90d3eba0d97ae6d799e5bd3 to your computer and use it in GitHub Desktop.
Save Sleepful/336ccc55a90d3eba0d97ae6d799e5bd3 to your computer and use it in GitHub Desktop.
var nsp2 = io.of('/2');
nsp2.on('connection', socket => {
socket.on('change color', (color) => {
nsp2.broadcast.emit('change color', color)
}
var nsp3 = io.of('/3');
nsp3.on('connection', socket => {
socket.on('change color', (color) => {
nsp3.broadcast.emit('change color', color)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment