0.1.1 • Published 7 years ago

sync-loop v0.1.1

Weekly downloads
77
License
GNU General Publi...
Repository
github
Last release
7 years ago

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