
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
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
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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.