Angular Progressbar

A nanoscopic progress bar. Featuring realistic trickle animations to convince your users that something is happening!
The documentation is available at the wiki page 📚
Issues
If you identify any errors in the library, or have an idea for an improvement, please open an issue.

Become a sponsor and get your logo on our README on GitHub and the front page of https://ngx-progressbar.netlify.com/.

Backers
Become a backer and get your logo on our README on GitHub.

Author
Murhaf Sousli
6.0.0
Breaking changes
Before
Before version 6, there were 3 packages each one published in its own npm package
npm i @ngx-progressbar/core @ngx-progressbar/http @ngx-progressbar/router
import { NgProgressModule } from '@ngx-progressbar/core';
import { NgProgressHttpModule } from '@ngx-progressbar/http';
import { NgProgressRouterModule } from '@ngx-progressbar/router';
After
After version 6, all the packages is combined and published in one npm package
npm i ngx-progressbar
import { NgProgressModule } from 'ngx-progressbar';
import { NgProgressHttpModule } from 'ngx-progressbar/http';
import { NgProgressRouterModule } from 'ngx-progressbar/router';