@ngx-loading-bar/http-client

Automatic page loading / progress bar for Angular

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@ngx-loading-bar/http-client
75856.0.22 years ago7 years agoMinified + gzip package size for @ngx-loading-bar/http-client in KB

Readme

@ngx-loading-bar/http-client
A fully automatic loading bar with zero configuration for angular app (http, http-client and router).

  1. Install @ngx-loading-bar/http-client

npm install @ngx-loading-bar/http-client --save

  1. Import the LoadingBarHttpClientModule:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http';
import { LoadingBarHttpClientModule } from '@ngx-loading-bar/http-client';
import { AppComponent } from './app';

@NgModule({
  imports: [BrowserModule, HttpClientModule, LoadingBarHttpClientModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}

  1. Include ngx-loading-bar in your app component:

import { Component } from '@angular/core';

@Component({
  selector: 'app',
  template: `
    ...
    <ngx-loading-bar></ngx-loading-bar>
  `,
})
export class AppComponent {}

Related packages