Skip to content

thejhh/node-rssee

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node RSS EventEmitter

Description

Simple evented RSS feed reader for Node.js.

Installation for Node.js

Simplest way to install is to use npm, just simply npm install rssee.

License

MIT-style license, see INSTALL.txt.

Dependencies

This library is using my forked version (which enabled https urls) of node-easyrss (which uses libxmljs) to parse ATOM/RSS feeds.

In addition to that you need to have libxml2-dev and scons in your system.

You can install these packages on Debian-based system with command:

aptitude install scons libxml2-dev

Examples

var rss = require('rssee').create({'interval':300, 'ignore_first_run': true}),
    sys = require('sys');

rss.on('article', function(a) {
	console.log('new article received: ' + sys.inspect(a));
});

rss.start('http://localhost:8080/rss.xml');

About

Node RSS EventEmitter

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published