
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Very lightweight progress bars (~699 bytes gzipped).
Compatibility: iE7+ and the rest of the world
Download and extract the latest release or install with package manager:
$ bower install nanobar
npm:
$ npm install nanobar
Link nanobar.js from your html file
<script src="path/to/nanobar.min.js"></script>
or require it:
var Nanobar = require('path/to/nanobar');
var nanobar = new Nanobar( options );
options
id <String>: (optional) id for nanobar divclassname <String>: (optional) class for nanobar divtarget <DOM Element>: (optional) Where to put the progress bar, nanobar will be fixed to top of document if no target is passedResize the bar with nanobar.go(percentage)
arguments
percentage <Number> : percentage width of nanobarCreate bar
var options = {
classname: 'my-class',
id: 'my-id',
target: document.getElementById('myDivId')
};
var nanobar = new Nanobar( options );
//move bar
nanobar.go( 30 ); // size bar 30%
nanobar.go( 76 ); // size bar 76%
// size bar 100% and and finish
nanobar.go(100);
Nanobar injects a style tag in your HTML head. Bar divs has class .bar, and its containers .nanobar, so you can overwrite its values.
Default css:
.nanobar {
width: 100%;
height: 4px;
z-index: 9999;
top:0
}
.bar {
width: 0;
height: 100%;
transition: height .3s;
background:#000;
}
You should know what to do with that ;)
© 2016 jacoborus - Released under MIT License
FAQs
Very lightweight js progress bars (for browsers)
The npm package nanobar receives a total of 1,520 weekly downloads. As such, nanobar popularity was classified as popular.
We found that nanobar 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.

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.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.