Package Exports
- progressbar
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (progressbar) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Progress Bar
A nice wrapper around TJ Holowaychuck's node-progress with chaining, domains, and steps
Install
- Install:
npm install --save progressbar
- Module:
require('progressbar')
Editions
This package is published with the following editions:
progressbar
aliasesprogressbar/index.js
which uses Editions to automatically select the correct edition for the consumers environmentprogressbar/source/index.js
is Source + ESNext + Requireprogressbar/es2015/index.js
is Babel Compiled + ES2015 + Require
Older environments may need Babel's Polyfill or something similar.
Usage
Example
const progress = require('progressbar').create().step('the task you are currently performing')
// use an array of steps that execute one second after each other
// as if we do them all instantly
// you won't see the progress bar as it will be instant
;[
() => progress.setTotal(5),
() => progress.setTick(1),
() => progress.setTick(2),
() => progress.setTick(3),
() => progress.addTick(),
() => progress.addTick(),
() => progress.finish() // remove and destroy the progress bar
].forEach(function (step, index) {
setTimeout(step, index * 1000)
})
ProgressBar API
step(step)
- set the step, resets the total and the ticksetTick(ticks)
- set the completed ticksaddTick()
- add 1 to the completed ticksgetTick()
- get the completed tickssetTotal(total)
- set the total ticksaddTotal()
- add 1 to the total ticksgetTotal()
- get the total ticksfinish()
- finish manually, will destroy the progress bar
History
Discover the release history by heading on over to the HISTORY.md
file.
Contribute
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Backers
Maintainers
These amazing people are maintaining this project:
Sponsors
No sponsors yet! Will you be the first?
Contributors
These amazing people have contributed code to this project:
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
License
Unless stated otherwise all works are:
- Copyright © 2013+ Bevry Pty Ltd
and licensed under: