0.0.0 • Published 10 years ago

co-from-stream v0.0.0

Weekly downloads
57,733
License
-
Repository
-
Last release
10 years ago

co-from-stream

Create a co generator stream from a node stream.

Usage

var co = require('co');
var fs = require('fs');
var fromStream = require('co-from-stream');

co(function*(){
  var read = fromStream(fs.createReadStream('index.js'));
  
  var data;
  while (data = yield read()) console.log(data.toString());
})();

API

fromStream(stream)

Create a co generator stream from stream.

Installation

$ npm install co-from-stream

License

MIT