Created
February 22, 2019 16:07
-
-
Save Sleepful/336ccc55a90d3eba0d97ae6d799e5bd3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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