Skip to content

Instantly share code, notes, and snippets.

@archit
Created April 20, 2015 01:02
Show Gist options
  • Save archit/dd99e3bbb4aaadc31faf to your computer and use it in GitHub Desktop.
Save archit/dd99e3bbb4aaadc31faf to your computer and use it in GitHub Desktop.
<h3>Hello Express</h3>
<script src="https://cdn.socket.io/socket.io-1.3.5.js"></script>
<script>
var socket = io.connect('http://localhost:3000', {
reconnection: false,
reconnectionAttempts: 5
});
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment