What is the best way to display a progress bar in an Angular2 application when an HTTP request is being carried out?
I tried the following using AngularMaterial2 progress bar:
<md-progress-bar mode="determinate" value="myValue"></md-progress-bar>
But how to find the 'value' for the above code?
(If it is not possible to find out the actual progress of an HTTP request, what is the best way to achieve a Youtube or Github style progress bar?)