Gathering detailed insights and metrics for xprogress
Gathering detailed insights and metrics for xprogress
Gathering detailed insights and metrics for xprogress
Gathering detailed insights and metrics for xprogress
npm install xprogress
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
183,896
Last Day
147
Last Week
1,614
Last Month
5,195
Last Year
88,647
2 Stars
164 Commits
2 Watchers
1 Branches
1 Contributors
Updated on Oct 28, 2024
Latest Version
0.20.0
Package Id
xprogress@0.20.0
Unpacked Size
62.84 kB
Size
15.19 kB
File Count
4
NPM Version
9.6.6
Node Version
20.2.0
Published on
Jun 20, 2023
Cumulative downloads
Total Downloads
Last Day
19.5%
147
Compared to previous day
Last Week
20.4%
1,614
Compared to previous week
Last Month
-20.1%
5,195
Compared to previous month
Last Year
39.8%
88,647
Compared to previous year
3
Construct Dynamic, Flexible, extensible progressive CLI bar for the terminal built with NodeJS
Via NPM:
1npm install xprogress
Create a basic progress bar that updates itself with 10% twice every second until it's at maximum
1import ProgressBar from 'xprogress'; 2 3const ProgressBar = require('xprogress'); 4 5const bar = new ProgressBar(100); 6 7const interval = setInterval(() => { 8 bar.tick(10).draw(); 9 if (bar.isComplete()) { 10 bar.end(`The bar completed\n`); 11 clearInterval(interval); 12 } 13}, 500);
ProgressBar uses stringd to parse content within ProgressBar::template
with variables in ProgressBar::variables
and then displays them on the terminal.
This sequence occurs for every time ProgressBar::draw()
is called.
ProgressBar
(total[, slots][, opts])total
: <number>slots
: <HybridInput[]>opts
: <BarOpts>Create and return an xprogress instance
slots
define the percentage to each part of the progressbar. This is parsed by pad-ratio to a max of 100.
1const bar = new ProgressBar(100, [20, 44]);
GlobOpts
: Objectbar
: Object
blank
: <string> Content to use for the blank portion of the progressbar. Default: '-'
.filler
: <string> Content to use for the filled portion of the progressbar. Default: '#'
.header
: <string> Content to use for the header(s) of progressbars. Default: ''
.colorize
: <boolean> Whether or not to allow colors in the bar. Default: true
.separator
: <string> Content to use when separating bars. Default: ''
.pulsateSkip
: <number> Distance away at which to skip a pulsating bar. Default: 15
.pulsateLength
: <number> The length of a pulsating progressbar. Default: 15
.clean
: <boolean> Whether or not to clear the progressbar buffer on the terminal after ProgressBar::end()
has been called. Default: false
.flipper
: <string|string[]> Content(s) to use for the progressbar flipper. This would cycle through all indexes in this property for everywhere :{flipper} is speified. Default: ['|', '/', '-', '\']
.pulsate
: <boolean> Whether or not to use a pulsate view for the progressbar. Default: false
.template
: <string|string[]> The template to use for the progressbar view. This is parsed by stringd. with this.variables
Default: ''
.variables
: <VariableOpts> Variables with which to parse this.template
, extended with cStringd.raw
.forceFirst
: <boolean> Whether or not to force a multi-bar progressbar to a single bar (useful either when terminal width is too small or when filled with excess addons). Default: false
.writeStream
: <WriteStream> The tty-ish writable stream we are writing to. Default: stdout.The global options shared by both ProgressBar and ProgressStream.
VariableOpts
extends cStringd.raw
: Object
tag
: <any> Floating mutable tag to be attached to the barbar
: <string> The progress bar itselflabel
: <any> The label to be attached to the bartotal
: <any> The maximum value for the entire duration of the barflipper
: <any> The flipper as defined in the definition for the progressbar. Default: ['|', '/', '-', '\']
.completed
: <any> The value for the completion level of the entire bar activity. Generated from ProgressBar::average()
.completed
remaining
: <any>percentage
: <any>Variables with which to parse this.template
, extended with cStringd.raw
. variables prepended with *
will be ignored anywhere else besides wherever's explicitly requesting a drawn bar.
StreamVariables
extends VariableOpts
: Object
eta
: <string> Duration for the entire progress to end. Parsed by prettyMssize
: <ByteString> Human readable size for the number of total transferred bytes. Parsed by xbytesspeed
: <string> Human readable speed for the number of bits transferred per second. Parsed by xbytesprogress
: <ProgressStreamSlice> The Progress Objecteta:raw
: <number> Duration estimate of how long it would take for the stream to end based on the number of bytes being steadily transmitted per second.slot:bar
: <string> The bar for the active chunk of the progressbar.slot:blank
: <string> The character with which to be used as the slot's blank character.slot:eta
: <string> Duration estimate for the active chunk to be completed. Parsed by prettyMsslot:eta:raw
: <number> Duration estimate for the active chunk to be completed.slot:filler
: <string|string[]> The character(s) with which to be used as the slot's filler character.slot:header
: <string> The character with which to be used as the slot's header character.slot:size
: <ByteString> Human readable size for the number of transferred bytes specific for the active chunk. Parsed by xbytesslot:total
: <ByteString> Human readable size for the total number of bytes that can be processed by the active chunk. Parsed by xbytesslot:runtime
: <string> Runtime for the active chunk. Parsed by prettyMsslot:runtime:raw
: <number> Runtime for the active chunk.slot:percentage
: <string> Integer defining the active slot completion percentageslot:size:total
: <ByteString> Human readable size for the total number of bytes transferred in a single instanceHybridInput
: string|number|number[]This content here is parsed by pad-ratio in the construct of an HybridInput.
Feel free to clone, use in adherance to the license. Pull requests are very much welcome.
1git clone https://github.com/miraclx/xprogress.git 2cd xprogress 3npm install 4# hack on code
Apache 2.0 © Miraculous Owonubi (@miraclx) <omiraculous@gmail.com>
No vulnerabilities found.