0.0.3 • Published 9 years ago

ng-request v0.0.3

Weekly downloads
6
License
-
Repository
github
Last release
9 years ago

Angular $http as request

Angular service that wraps $http to look like request. Covers basic GET and POST requests but not all request's options are supported.

Adapted from: https://github.com/iriscouch/browser-request

Usage

Add index.js to your project.

angular.module('myModule').controller('myController', function(ngRequest) {

  ngRequest.get('http://example.com', function(err, response, body) {
    console.log(body);
  });
});
0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago

0.0.0

9 years ago