Skip to content

Instantly share code, notes, and snippets.

@milingo
Created June 15, 2017 14:48
Show Gist options
  • Save milingo/a21639bdf741d6f8131d327c71179785 to your computer and use it in GitHub Desktop.
Save milingo/a21639bdf741d6f8131d327c71179785 to your computer and use it in GitHub Desktop.
<script src="/socket.io/socket.io.js"></script>
<script>
const socket = io('http://localhost:3000');
socket.on('tic', (data) => {
console.log(data);
data.seconds++;
socket.emit('tac', data);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment