Angular HTTP Site Progress Reporter
npm install angular-http-progress




Install through bower:
``sh`
bower install angular-http-progress --save
* Require the ngHttpProgress module in your angular application
`js`
angular.module('app', ['ngHttpProgress'])
* (Optionally) configure the service provider
`js``
angular.module('app', ['ngHttpProgress'])
.config(['ngHttpProgress', function(ngHttpProgressProvider){
ngHttpProgressProvider
.configure({
color: '#ff000',
height: '10px'
})
;
}])
* ???
* Profit! All outgoing http requests will start or bump the progress meter, when all pending requests are resolved,
the progress bar will complete.