Skip to content

Instantly share code, notes, and snippets.

@mosfet1kg
Created July 29, 2015 07:13
Show Gist options
  • Save mosfet1kg/45d12bc1507e65a864e1 to your computer and use it in GitHub Desktop.
Save mosfet1kg/45d12bc1507e65a864e1 to your computer and use it in GitHub Desktop.
npm Q parallel excution
var Q = require('q');
Q.fcall([
(function(){
setTimeout(function(){
console.log('func1');
},5000)
})(),
(function(){
setTimeout(function(){
console.log('func2');
},5000)
})()
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment