Skip to content
This repository has been archived by the owner on Dec 24, 2021. It is now read-only.

sentientwaffle/feed-poll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Feed-poll

Build Status

Poll for RSS or ATOM articles.

Installation

$ npm install feed-poll

Usage

var poll = require('feed-poll')(
[ "http://feeds.feedburner.com/TechCrunch/"
, "https://github.com/blog.atom"
]);

poll.on("article", function(article) {
  console.log(article);
});

poll.start();

Handle errors:

poll.on("error", function(err) {
  console.error(err);
});

License

See LICENSE.

About

a ATOM/RSS feed poller for Node.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published