Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

9 Commits

Repository files navigation

Publish repo for angular-hu-headers

This repo is for distribution on bower. The source for this module is in the main angular-hu-headers repo. Please file issues and pull requests against that repo.

httpu.headers

Add custom, application headers, to every $httpresponse. Currently, two headers are added:

  • httpu-request-time: The time the request took to complete
  • httpu-request-url: The url used, with all the parameters
  • httpu-cached-at: The time a cached request was added to the cache specified in $http

Installation

Get it from bower or directly download it.

bower install --save angular-hu-headers

Add the dependency in the HTML

<scripttype="text/javascript" src="bower_components/angular-hu-headers/headers.js"></script>

Add the httpu.headers dependency to your App Module

angular.module('MyApp',['httpu.headers']);

Usage

angular.module('MyApp').factory('myCache',function(huFromCache,$cacheFactory){varcache=$cacheFactory('apicache');returnhuFromCache(cache);}).run(function($http,myCache){//Make a timestamped request, and cache response for id=5. timestamp param will be removed$http.get('http://myapi.com/things',{params: {id: 5},cache: myCache}).then(function(response){console.log('The request was to the endopoint: ',response.headers('httpu-request-url'));console.log('The request took ',response.headers('httpu-request-time')+'ms');console.log('The request was cached at',response.headers('httpu-cached-at')+'ms');//'The request was to the endopoint: http://myapi.com/things?id=5//'The request took 123ms//'The request was cached at 1431335511216ms});});

Use cases

  • You want to know the final URL used for your request (this may be computed by $http before leaving to $httpBackend) to delete cache entries, log them...
  • You wanna know if the request you performed hit your $http request cache
  • Wanna collect statistics information for your backend responses accessed over the worldwide clients.

Implementation details

Angular $httpBackend has been decorated, due to cross-browser incompatibilities reached while decorating window.XMLHTTPRequest.

LICENSE

The MIT License (MIT)

Copyright (c) 2015 Telefónica I+D - http://www.tid.es

About

Bower distribution for httpu.headers

Resources

Stars

1 star

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages