
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.