Skip to content

Instantly share code, notes, and snippets.

@adrianosferreira
Created May 18, 2016 18:08
Show Gist options
  • Save adrianosferreira/b6a7005160626895c4239d84c799ff75 to your computer and use it in GitHub Desktop.
Save adrianosferreira/b6a7005160626895c4239d84c799ff75 to your computer and use it in GitHub Desktop.
var request = require('request');
var async = require('async');
var q = async.queue(function(task, callback){
request('http://site.com/?page=' + task.index, function( err, res, body ) {
console.log('Finalizado ' + i);
callback();
});
}, 1);
for (i = 0; i < 1000; i++){
q.push({index: i});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment