Socket
Socket
Sign inDemoInstall

rss-combiner

Package Overview
Dependencies
88
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rss-combiner

Combine multiple RSS feed sources into one


Version published
Maintainers
1
Created

Readme

Source

rss-combiner Build Status

Combine multiple RSS feeds into one using node-feedparser and rss.

npm install rss-combiner

Usage

Combine feeds
var RSSCombiner = require('rss-combiner');

// Promise usage
RSSCombiner(feedConfig)
  .then(function (combinedFeed) {
    var xml = combinedFeed.xml();
  });

// Node callback usage
RSSCombiner(feedConfig, function (err, combinedFeed) {
  if (err) {
    console.error(err);
  } else {
    var xml = combinedFeed.xml();
  }
});
feedOptions

See rss feedOptions

Plus 2 additional required 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 from

Keywords

FAQs

Last updated on 03 Jun 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc