0.0.1 • Published 14 years ago
feed-poll v0.0.1
Feed-poll
Poll for RSS or ATOM articles.
Installation
$ npm install feed-pollUsage
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.
0.0.1
14 years ago