
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
bar-of-progress
Advanced tools
An easily overridable progress bar. Switch between horizontal and vertical styles out of the box.
var Brogress = require('bar-of-progress'),
bar = new Brogress();
document.body.appendChild(bar.element);
bar.value(0.5); //sets the value to 0.5
bar.value(); // returns current value 0.5
Some minimal styling is added out of the box but is easily overridden.
bar-of-progress is implemented with two divs, a parent and a container. .progress-bar is the parent element. .value is the child element.
Some example styling:
.progress-bar {
width: 350px;
height: 25px;
box-shadow: 0 2px 25px rgba(0, 0, 0, 0.25) inset;
}
.progress-bar .value {
background-color: teal;
}
The parent element has an additional class to match it's current style. .horizontal or .vertical
For example:
.progress-bar.vertical {
width: 25px;
height: 260px;
}
Properties are implemented as getter setter functions. Call with no parameters to get the current value or call with with a value to set.
properties:
gets the current progress min
defaults to 0
sets the progress min
gets the current progress max.
defaults to 1
sets the progress max
gets the current progress value
sets the progress value
gets the current style
defaults to 'horizontal'
sets the style
valid values are 'horizontal'
or 'vertical'
more styles can be added by adding a property with an update function to
.updateFunctions
bar.updateFunctions['segmented'] = function(){
//implement your segmented update function here
}
//style can then be set as normal
bar.style('segmented');
npm test
npm run example
FAQs
An easily overrideable progress bar
The npm package bar-of-progress receives a total of 2 weekly downloads. As such, bar-of-progress popularity was classified as not popular.
We found that bar-of-progress demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.