npm.io
0.1.1 • Published 9 years ago

sync-loop

Licence
GNU General Public License v3.0
Version
0.1.1
Deps
0
Vulns
0
Weekly
0
Stars
4

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")
});