feeder-js
v2.0.0
Published
RSS feed watcher
Downloads
12
Readme
Feeder.js
Automated feed watcher
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