Gathering detailed insights and metrics for @ngx-loading-bar/core
Gathering detailed insights and metrics for @ngx-loading-bar/core
Gathering detailed insights and metrics for @ngx-loading-bar/core
Gathering detailed insights and metrics for @ngx-loading-bar/core
Automatic page loading / progress bar for Angular
npm install @ngx-loading-bar/core
Typescript
Module System
Node Version
NPM Version
TypeScript (88.05%)
JavaScript (5.33%)
SCSS (4.85%)
HTML (1.77%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
784 Stars
164 Commits
84 Forks
13 Watchers
2 Branches
9 Contributors
Updated on Jul 11, 2025
Latest Version
7.0.0
Package Id
@ngx-loading-bar/core@7.0.0
Unpacked Size
87.37 kB
Size
21.17 kB
File Count
18
NPM Version
10.8.2
Node Version
20.17.0
Published on
Oct 13, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
2
A fully automatic loading bar with zero configuration for angular app (http, http-client and router).
1 npm install @ngx-loading-bar/core --save
LoadingBarModule
:1import { NgModule } from '@angular/core'; 2 3import { LoadingBarModule } from '@ngx-loading-bar/core'; 4 5@NgModule({ 6 ... 7 imports: [ 8 ... 9 10 LoadingBarModule, 11 ], 12}) 13export class AppModule {}
ngx-loading-bar
in your app component:1import { Component } from '@angular/core';
2
3@Component({
4 selector: 'app',
5 template: `
6 ...
7 <ngx-loading-bar></ngx-loading-bar>
8 `,
9})
10export class AppComponent {}
1import { Component } from '@angular/core'; 2import { LoadingBarService } from '@ngx-loading-bar/core'; 3 4@Component({ 5 selector: 'app', 6 template: ` 7 ... 8 <ngx-loading-bar></ngx-loading-bar> 9 <button (click)="startLoading()">start</button> 10 <button (click)="stopLoading()">stop</button> 11 `, 12}) 13export class App { 14 constructor(private loadingBar: LoadingBarService) {} 15 16 startLoading() { 17 this.loadingBar.start(); 18 } 19 20 stopLoading() { 21 this.loadingBar.complete(); 22 } 23}
@angular/common/http
requests.@angular/http
requests.No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
packaging workflow detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 2/30 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
33 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More