Skip to content

Instantly share code, notes, and snippets.

@akiva
Last active August 29, 2015 14:22
Show Gist options
  • Save akiva/222c5921509c4b604829 to your computer and use it in GitHub Desktop.
Save akiva/222c5921509c4b604829 to your computer and use it in GitHub Desktop.
var request = require('request');
var JSONStream = require('JSONStream');
request({ url: 'http://reddit.com/.json' })
.pipe(JSONStream.parse('data.children.*.data.title'))
.on('data', function (data) {
console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment