co-thread

0.0.1 • Public • Published

co-thread

Run a generator function in parallel N times.

Installation

$ npm install co-thread

Example

Send a request in batches of 20 parallel GETs:

var thread = require('co-thread');
var get = require('co-request');
var co = require('co');
 
co(function *(){
  var times = 10;
 
  while (times--) {
    yield thread(function *(){
      var res = yield get('http://google.com');
      console.log(res.statusCode);
    }, 20);
  }
 
})();

License

MIT

Dependents (2)

Package Sidebar

Install

npm i co-thread

Weekly Downloads

1,388

Version

0.0.1

License

MIT

Last publish

Collaborators

  • tjholowaychuk