Skip to content

Instantly share code, notes, and snippets.

@datafatmunger
Created August 18, 2012 12:30
Show Gist options
  • Save datafatmunger/3386592 to your computer and use it in GitHub Desktop.
Save datafatmunger/3386592 to your computer and use it in GitHub Desktop.
Ideedock Question Stream
WebSocketStompMock = SockJS;
var stomp = Stomp.client('http://ideedock.com:55674/stomp');
stomp.connect('guest', 'guest', function(x) {
stomp.subscribe('/topic/questions', function(d) {
console.log(JSON.parse(d.body).question);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment