Created
February 28, 2016 08:53
-
-
Save A-gambit/ee99e8bf59731760075a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
//server | |
io.on('connection', socket => { | |
//read and send file | |
...... | |
//update and send data | |
socket.on('updateFile', data => { | |
//update your file | |
... | |
//send new on client | |
socket.emit('updateData', data) | |
}) | |
}) | |
//client | |
socket.emit('updateFile', data) | |
socket.on('updateData', data => console.log(data)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment