Combine multiple RSS feeds into one using node-feedparser and rss.
npm install rss-combiner
Usage
Combine feeds
var RSSCombiner = ; // Promise usage ; // Node callback usage;
feedOptions
See rss feedOptions
Additional options
size
int the maximum number of entries to keep (most recently published will be kept)feeds
array url string array of feed_urls to retrieve content fromsoftFail
optional boolean if true failing to retrieve a single feed will not result in an error being thrown (default value: false)
feedOptions
Example Creates a new feed with a maximum of 20 entries containing the latest entries from 2 RSS feeds.
var feedConfig = title: 'Tech news from Guardian and BBC' size: 20 feeds: 'http://feeds.bbci.co.uk/news/technology/rss.xml' 'https://www.theguardian.com/uk/technology/rss' pubDate: ;