0.0.1 • Published 10 years ago

angular-rss v0.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
10 years ago

Angular RSS

Angular module that exposes a service for loading RSS feeds and parsing into entities. It might work, it might not. Probably not, though. Use at your own risk.

Unstable and un-tested. An excuse for having a go with TypeScript.

In time this may turn in to something useful, such as being able to read different types of feeds and parsing into a common entity, but for now it's very much a work-in-progress.

Usage

  • Include X2JS
  • Include dist/angular-rss.js or dist/angular-rss.min.js.
// Depend on the module
angular.module('myApp', ['ts.rssreader']);
// Inject and use the service
var MyService = function(FeedService)
{
  var myFeed = FeedService.loadFeed('http://site.com/rss');
};