Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
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 5 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.