
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
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 22 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.