AnyHTTP adapter for the AngularJS framework.
This adapter is implemented as an ES6 module which can be installed with jspm and loaded via SystemJS as follows:
import 'any-http-angular';
import angular from 'angular';
var mod = angular.module('example', ['anyHttp']);
mod.factory('exampleFactory', ['anyHttp', function(anyHttp) {
anyHttp.
get('https://example.com').
then(({body, headers}) => {
console.log("body:", body);
console.log("content-type:", headers['Content-Type']);
});
}]);