any-http-angular
v0.1.0
Published
AnyHTTP adapter for AngularJS
Downloads
162
Readme
AnyHTTP adapter for AngularJS
AnyHTTP adapter for the AngularJS framework.
Usage
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']);
});
}]);