# angular-request-loading

> angular-request-loading =======================

Latest version **1.0.7** (published 2015-12-16) · none license · 0 weekly downloads

## Install

```sh
npm install angular-request-loading
pnpm add angular-request-loading
yarn add angular-request-loading
bun add angular-request-loading
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.7 |
| Published | 2015-12-16 |
| First published | 2015-10-29 |
| Weekly downloads | 0 |
| License | none |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Christian |
| Maintainers | christian_fei |

## Links

- npm: https://www.npmjs.com/package/angular-request-loading
- Repository: https://github.com/christian-fei/angular-request-loading
- Homepage: https://github.com/christian-fei/angular-request-loading#readme
- Issues: https://github.com/christian-fei/angular-request-loading/issues
- npm.io page: https://npm.io/package/angular-request-loading

## Dependencies (1)

- [lodash.some](https://npm.io/package/lodash.some.md) ^3.2.3

## Recent versions

- 1.0.7 (latest) — 2015-12-16
- 1.0.6 — 2015-12-16
- 1.0.5 — 2015-11-02
- 1.0.4 — 2015-11-02
- 1.0.3 — 2015-10-29
- 1.0.1 — 2015-10-29
- 1.0.0 — 2015-10-29

## README

angular-request-loading
=======================

[![Build Status](https://travis-ci.org/christian-fei/angular-request-loading.svg)](https://travis-ci.org/christian-fei/angular-request-loading)

```
npm install --save angular-request-loading
```

Sets a `loading` property on the `$rootScope` to show a loader
while resource are being fetched.

# Example integration

```
angular.module('app', ['angular-request-loading'])
.config(function(LoadingRequestInterceptorProvider, $httpProvider){
  LoadingRequestInterceptorProvider.setPrefix('customPrefix') /* optional */
  LoadingRequestInterceptorProvider.blacklist(/blacklisted$/) /* optional */

  $httpProvider.interceptors.push('LoadingRequestInterceptor')
})
```

and in your views you can use it like this:

```
<loader loading="loadingRequest"/>
```

# UMD

This is an [UMD](https://github.com/umdjs/umd) package.

# License

Do whatever you please with this.

---
_Source: https://npm.io/package/angular-request-loading · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
