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
95.3
Supply Chain
89.4
Quality
76.8
Maintenance
100
Vulnerability
100
License
TypeScript (88.05%)
JavaScript (5.33%)
SCSS (4.85%)
HTML (1.77%)
Total Downloads
11,235,775
Last Day
7,033
Last Week
43,730
Last Month
182,905
Last Year
2,144,941
MIT License
782 Stars
164 Commits
83 Forks
13 Watchers
2 Branches
9 Contributors
Updated on Apr 09, 2025
Minified
Minified + Gzipped
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
27.5%
7,033
Compared to previous day
Last Week
12.1%
43,730
Compared to previous week
Last Month
-6.1%
182,905
Compared to previous month
Last Year
1.4%
2,144,941
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 binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
packaging workflow detected
Details
Reason
0 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 1
Reason
Found 2/30 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
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
29 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-05-05
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