0.1.0 • Published 9 years ago

any-http-angular v0.1.0

Weekly downloads
133
License
Apache-2
Repository
github
Last release
9 years ago

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']);
    });
}]);