A Node package that reads RSS-like feeds and calls back with a simple, consistent JavaScript object. Easy to use, hides the history.
I always like to see the code first...
constreallysimple=require("reallysimple");consturlFeed="https://rss.nytimes.com/services/xml/rss/nyt/World.xml";reallysimple.readFeed(urlFeed,function(err,theFeed){if(err){console.log(err.message);}else{console.log(JSON.stringify(theFeed,undefined,4));}});This is what you see when you run the code.
I needed a simple routine to call when I wanted to read a feed.
RSS, Atom, and RDF.
Here's a demo app that runs a feed through reallySimple.
tinyFeedReader is a useful Node app that builds on the reallySimple package.
Thanks to Dan MacTough for the feedparser package.
Post comments and questions in the issues section of this repo.