1.0.3 • Published 7 years ago

feed-to-json v1.0.3

Weekly downloads
8
License
MIT
Repository
github
Last release
7 years ago

#About Util for parse RSS feed resources and normalize them to JSON object.

Installation

Install via NPM

npm install feed-to-json --save

Example

var Feed = require('feed-to-json');

Feed.load('https://news.google.com/news?pz=1&cf=all&output=rss', function(err, rss){
    console.log(rss);
});