pace icon indicating copy to clipboard operation
pace copied to clipboard

A node.js module that outputs a progress bar and other metrics to the command-line.

Results 7 pace issues
Sort by recently updated
recently updated
newest added

Adding two new options for the progress bar. An optional flag to indicate if we want to show the message when the progress bar finishes and the ability to customise...

See screen grab. The first progress bar completes when it gets to the constructed total. The second one has duplicates progress data. (this time with correct screen grab) ![screen shot...

I find it looks much better to have an empty progress bar initially rather than nothing at all. I'm currently doing an initial render by doing this: `pace.op(-1); pace.op();`. I...

Any chance we could get a scrolling console under the progress bar, so we can, while still using the progress bar, see the output of any console.log items left in...

For example, this: ``` var pace = require('pace')({ total: 6838, itemType: 'points' }); ``` will result in this: ![screen shot 2013-08-30 at 5 30 04 pm](https://f.cloud.github.com/assets/370976/1060850/7c1b676c-11bc-11e3-9899-38d52047cd5d.png)

Added customization features. Also, overhead newlines in the output have been removed to provide clean experience.