node-progress icon indicating copy to clipboard operation
node-progress copied to clipboard

Flexible ascii progress bar for nodejs

Results 75 node-progress issues
Sort by recently updated
recently updated
newest added

I have an app with a progress bar. Works fine with 1.1.8. When upgrading to 2.0.0, nothing displays until the final tick, which makes a progress bar pretty useless! I...

Currently a countdown look like this: `'reconnect in :current/:total seconds', { total: 5 }` Natural it should like be this: `'reconnect in :current seconds', { total: 5, reverse: true }`...

Here is code ```js var ProgressBar = require('progress'); var bar = new ProgressBar(':bar', { total: 10, renderThrottle: 0 }); for (var i = 0; i < 10; i++) { for...

Here's an example ![sync](https://cloud.githubusercontent.com/assets/5027156/26271526/50924f96-3d07-11e7-9364-11e11018c814.gif) as you can see, the progress goes from 0 to 100 instantly (probably due to TTFB and the small file size) When using `clear` it would...

I want to contribute to this project by writing **tests**. This might be my first contribution so any guide and suggestions are welcome from existing contributors. Example: Decision on which...

Hello! Thank you for this great library! I'm using it to display progress of CSV-file parsing. I have a CSV-file of 800K records and I'm calling `tick()` for each record....

The recent improvements are pretty awesome, could we have a version bump with npm publish?

'eta' and 'elapsed' display MM:SS on durations over 1 minute