53seven / node-blindparser

blindparser is an all purpose RSS/ATOM feed parser that parses feeds into a common format so that you do not have to care if they are RSS or ATOM feeds

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feed not parsing

jhnlsn opened this issue · comments

commented

not able to parse feed, let me know if its something you might be able to help me with.

Error:

xml2js.js:212
throw ex;
^
TypeError: undefined is not a function

simple script that im trying:

var parser = require('blindparser');

parser.parseURL('http://feeds.feedburner.com/TechCrunch',function(err,out){
console.log(err);
console.log(out);
});

commented

Ok so it looks like I was in error here, forgot the options object.

K, Ill make the options optional in the next code push