cli-progress
cli-progress copied to clipboard
:hourglass: easy to use progress-bar for command-line/terminal applications
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...
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...
 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...
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...
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...
Fixes #149
```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...