
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
ng2-slim-loading-bar
Advanced tools
Angular2 component shows slim loading bar at the top of the page of your application.
Follow me to be notified about new releases.
Some of these APIs and Components are not final and are subject to change!
npm install ng2-slim-loading-bar --save
Simple examples using ng2-slim-loading-bar:
Online demo available here
If you use SystemJS to load your files, you might have to update your config:
System.config({
map: {
'ng2-slim-loading-bar': 'node_modules/ng2-slim-loading-bar/bundles/index.umd.js'
}
});
style.css into your web page<ng2-slim-loading-bar></ng2-slim-loading-bar> tag in template of your application component.SlimLoadingBarModuleImport SlimLoadingBarModule.forRoot() in the NgModule of your application.
The forRoot method is a convention for modules that provide a singleton service.
import {BrowserModule} from "@angular/platform-browser";
import {NgModule} from '@angular/core';
import {SlimLoadingBarModule} from 'ng2-slim-loading-bar';
@NgModule({
imports: [
BrowserModule,
SlimLoadingBarModule.forRoot()
],
bootstrap: [AppComponent]
})
export class AppModule {
}
If you have multiple NgModules and you use one as a shared NgModule (that you import in all of your other NgModules),
don't forget that you can use it to export the SlimLoadingBarModule that you imported in order to avoid having to import it multiple times.
@NgModule({
imports: [
BrowserModule,
SlimLoadingBarModule.forRoot()
],
exports: [BrowserModule, SlimLoadingBarModule],
})
export class SharedModule {
}
SlimLoadingBarService for your applicationSlimLoadingBarService from ng2-slim-loading-bar in your application code:import {Component} from '@angular/core';
import {SlimLoadingBarService} from 'ng2-slim-loading-bar';
@Component({
selector: 'app',
template: `
<div>Hello world</div>
<button (click)="startLoading()">Start Loading</button>
<button (click)="stopLoading()">Stop Loading</button>
<button (click)="completeLoading()">Complete Loading</button>
<ng2-slim-loading-bar></ng2-slim-loading-bar>
`
})
export class AppComponent {
constructor(private slimLoadingBarService: SlimLoadingBarService) { }
startLoading() {
this.slimLoadingBarService.start(() => {
console.log('Loading complete');
});
}
stopLoading() {
this.slimLoadingBarService.stop();
}
completeLoading() {
this.slimLoadingBarService.complete();
}
}
ng2-slim-loading-bar for your applicationYou can use the following properties to customize the ng2-slim-loading-bar component in your template:
color - The color of loading bar. Default is firebrick. Any CSS compatible value.height - The height of loading bar. Default value is 2px.show - The flag helps hide and show the loading bar. Devault value is true.Example:
<ng2-slim-loading-bar [color]="'blue'" [height]="'4px'"></ng2-slim-loading-bar>
You can use the following properties to customize the SlimLoadingBar via instance of SlimLoadingBarService:
color - The color of loading bar.height - The height of loading bar.visible - The flag helps hide and show the loading bar.You can use the following methods to control the SlimLoadingBar via instance of SlimLoadingBarService:
start - Start the loading progress. Use the callback function as an parameter to listed the complete event.stop - Stop the loading progress. This method pause the current position of loading progress.reset- Reset the position of loading progress to 0.complete - Set the progress to 100% and hide the progress bar.Inspired by ngProgress.js
FAQs
Angular2 component shows slim loading bar at the top of the page
We found that ng2-slim-loading-bar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.