node-progress
node-progress copied to clipboard
Flexible ascii progress bar for nodejs
Looks like node-progress not rendering properly with [listr](https://github.com/SamVerschueren/listr). Consider running this following code where 2 libs coexist: ```js const ProgressBar = require('progress'); const Listr = require('listr'); // progress-bar let bar...
In https://github.com/yarnpkg/lets-dev-demo/pull/3#discussion_r170458123 and https://github.com/yarnpkg/lets-dev-demo/pull/3#issuecomment-368334518, I discovered that a project could reasonably want to write `:elapseds` to get (number of seconds)+`s`. I spend a lot of time working w/ progress bars...
Found some cases when `total` attribute may not be defined as `Number/String/undefined`, but could be a `NaN` format implicitly or not. For example, my app using `node-progress` lib and has...
Could you release the current master to npm? Thanks.
I have a node program that used progress bar to display the progress of various long running operations. I redirect the output to a file to be viewed later but...
I'm doing a VERY slow task at every 'tick'. So my rate is showing '1/sec'... but I'd like to be able to see something like '0.33/sec' or similar, with some...
`node-progress` TTY detection as an awesome feature, but sometimes terminal connection is lost due to `stdio` piping. Here is a very simple example: ``` node ./simple.js 2>&1 | cat ```...
I have an importer that I can stop at any moment. So if I stop it, the output looks ugly: ``` Import [====----------------] 173/846Terminate batch job (Y/N)? ``` I expect...
# In some situations you may not know the total number of ticks, but want some progress reporting nonetheless. Right now I have two particular use-cases in mind, but I'm...
This allows one to employ custom logging facilities during an interrupt, like for example when one wants to log both to a file and to lines above the bar.