2.0.0 • Published 6 years ago

feed-js v2.0.0

Weekly downloads
11
License
-
Repository
github
Last release
6 years ago

Feed

Library that makes easy to parse an RSS feed in your client-side.

Feed calls YQL internally.

Browser Compatibility

Feed is compatible with the following browsers/versions:

  • Google Chrome
  • Firefox
  • Safari
  • IOS Safari
  • Opera
  • IE 6+

Instalation

To install Feed, execute:

  npm install feed-js

Or Bower too:

  bower install feed

Or simply pick up the file from src directory.

Parameters

  • context Object (window by default)
  • url String (undefined by default)
  • number Number (it's the total of posts 10 by default)
  • callback Function (Function by default)

Example

var render = function(posts) {
  posts.item.forEach(function (element) {
    console.log(element.title);
    console.log(element.link);
  });
};

window.Feed({
  url: 'https://news.ycombinator.com/rss',
  number: 3,
  callback: render
});
2.0.0

6 years ago

1.0.0

9 years ago