Skip to content

Instantly share code, notes, and snippets.

@jhnlsn
Created September 14, 2012 21:43
Show Gist options
  • Save jhnlsn/3725078 to your computer and use it in GitHub Desktop.
Save jhnlsn/3725078 to your computer and use it in GitHub Desktop.
blindparser feedburner
var parser = require('blindparser');
var options = {};
parser.parseURL('http://feeds.feedburner.com/TechCrunch', options,function(err,out){
console.log(err);
console.log(out);
});
/* Output of 2 console.log messages above */
null
{ type: 'atom', metadata: {}, items: [] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment