Skip to content

Instantly share code, notes, and snippets.

@lamchakchan
Created February 22, 2017 22:22
Show Gist options
  • Select an option

  • Save lamchakchan/f853bd734251c141ee20ce20aa384d76 to your computer and use it in GitHub Desktop.

Select an option

Save lamchakchan/f853bd734251c141ee20ce20aa384d76 to your computer and use it in GitHub Desktop.
const Promise = require('bluebird');
const jobs = listJobs();
Promise
.map(jobs, (job) => processAsync(job), 40)
.then(() => console.log('done'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment