Skip to content

Instantly share code, notes, and snippets.

@CarterTsai
Created July 22, 2014 06:57
Show Gist options
  • Save CarterTsai/d5edeb3a03e5bf8ac10b to your computer and use it in GitHub Desktop.
Save CarterTsai/d5edeb3a03e5bf8ac10b to your computer and use it in GitHub Desktop.
async serial example
var async = require('async');
function delayRun(data) {
setTimeout(function(){
console.log("run" + data);
}, data);
}
async.series([delayRun(3000),delayRun(1000),delayRun(2000)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment