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

:hourglass: easy to use progress-bar for command-line/terminal applications

Results 27 cli-progress issues
Sort by recently updated
recently updated
newest added

I don't know if "add support" is the correct phrase to use. But these three libraries provide interesting functionality that might be interesting to have. chalk-animation - enables animations in...

question

I create a multi-bar and create continuously create new bars to it, during which some of the bars have already finished. After I have added approximately 15 bars, when a...

validated

![Multiple Progresses Bar (1)](https://user-images.githubusercontent.com/52586855/180248319-19755462-133d-4637-bb77-911f64a78dc1.svg) The total would be the same, but there could be multiple different progresses. In the example image, the green color has more progress than the green...

feature-request

When using cli-progress, if you attempt to interrupt the process using ctrl+c the command is ignored until the process fully completes. Reading through the readme I may have missed how...

bug

I use this package in an internal package I wrote for my org. While executing the pipeline, I ran into an error stating that `_stringWidth is not a function` in...

In the code Im running there is an exception so I log the messages. the problem is that it will break the bar and make it redraw. How to make...

Where 105 hours and 30 minutes remains, for example, what will be displayed is "05h30m" instead of "105h30m" or, ideally, 4d9h30m.

This will allow ETAs to be displayed correctly regardless of how long they are. If the ETA is longer than 1 day it will display as: 1d20h or 25048d03h. This...

```javascript import cliProgress from "cli-progress"; // create new container const multibar = new cliProgress.MultiBar( { clearOnComplete: false, hideCursor: true, format: " {bar} | {filename} | {value}/{total}", }, cliProgress.Presets.shades_grey ); const...