feeder-js

RSS feed watcher


Keywords
feed, rss, watch, polling
License
GPL-3.0
Install
npm install feeder-js@2.0.0

Documentation

Feeder.js

Automated feed watcher

Build Status

Installation

$ npm install feeder-js

Features

  • You can add multiple feeds to the app
  • Portable Feed class
  • Easy to handle

Example

Add a new RSS Feed to the App

Instantiate a new Feeder App

var Feeder = require('feeder-js').Feeder
var feeder = new Feeder()

Add a RSS Feed to the App

feeder.add('testRSS', 'https://github.com/luii/feeder/commits/master.atom')

Watch a RSS Feed

feeder.watch('testRSS')

Stop a RSS Feed Watcher

feeder.stop('testRSS')

Tests

To run the test suite, first install the dependencies, then run npm test:

$ npm install
$ npm test