I've set up an oboe JS stream that's streaming JSON from a server. When I start listening on the stream I don't get any data, but as soon as I kill the server I get all the expected nodes. I'm guessing Oboe is caching before it returns. Here's the oboe code:
oboe(options /*url*/)
.node('*', function(data) {
console.log(data);
})
.path('*', function(data) {
console.log(data);
})
.done(function(things) {
console.log('we got it', things);
// we got it
}).fail(function() {
console.log('fail!')
});