An Angular Provider which wraps the Superfeedr HTTP API. It implements the following features of the Superfeedr HTTP API:
- Subscribe to a new feed
- Unsubscribes from a feed
- List all existing subscriptions
- Retrieve past items of a feed
- RSS Streaming
bower install ngsuperfeedr
Require ngSuperfeedr and inject the Superfeedr service.
angular.module('app', [
'ngSuperfeedr'
]).controller('Ctrl', function(
$scope,
Superfeedr
){});
Feel free to check the example as well.