
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
progress-callback
Advanced tools
small npm module for tracking progress of a set of tasks. you define the total amount of tasks and the intervals for getting progress updates and the callback for receiving the progress updates.
#install
npm install -g progress-callback
constructor(total, callback, intervals)
total - total amount of tasks
callback - to be called on each interval. receives the current interval
intervals [optional] - custom intervals instead of default 10,20,30... 100. should be supplied as a sorted increasing array.
advance(n)
advance the tracking.
n [optional] - how many tasks to advance. default is 1.
#examples:
var Progress = require('progress-callback');
///////default usage
var prog = new Progress(100, (p) => {
console.log("### " + p + "%");
})
for (var i = 0; i < 100; i++) {
prog.advance();
}
///////custom intervals
var prog = new Progress(100, (p) => {
console.log("### " + p + "%");
}, [5, 15, 30, 60, 90, 100])
for (var i = 0; i < 100; i++) {
prog.advance();
}
///////custom advance
var prog = new Progress(100, (p) => {
console.log("### " + p + "%");
})
for (var i = 0; i < 100; i += 22) {
prog.advance(i);
}
FAQs
track progress of a task and get callbacks in defined intervals
We found that progress-callback 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.