sync-loop
v0.1.1
Published
Run a sync loop with async functions
Downloads
380
Readme
sync-loop
Run a sync loop with async functions
How to use
Install
npm install sync-loop
Import and use
var syncLoop = require('sync-loop');
var numberOfLoop = 10;
syncLoop(numberOfLoop, function (loop) {
// loop body
var index = loop.iteration(); // index of loop, value from 0 to (numberOfLoop - 1)
doAsyncJob(function(){
// This is callback of your function
loop.next(); // call `loop.next()` for next iteration
})
}, function () {
console.log("This is finish function")
});