angular-rss
v0.0.1
Published
Angular RSS reader
Downloads
3
Readme
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
ordist/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');
};