New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

progress-callback

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

progress-callback

track progress of a task and get callbacks in defined intervals

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

progress-callback

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

usage

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

Package last updated on 08 Mar 2017

Did you know?

Socket

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.

Install

Related posts