Socket
Socket
Sign inDemoInstall

rssee

Package Overview
Dependencies
1
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rssee

Node RSS EventEmitter


Version published
Weekly downloads
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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');

FAQs

Last updated on 18 Dec 2011

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc