genread

Turn any generator into a Readable stream

Usage no npm install needed!

<script type="module">
  import genread from 'https://cdn.skypack.dev/genread';
</script>

README

Turn any generator into a readable stream.

Build Status

Installation

$ npm install genread

You must use node 0.11.9 or higher for generator support and run with the --harmony flag.

Example

var genread = require('genread');

function* twolines(){
  yield 'line 1\n'
  yield 'line 2\n'
}

function* fivelines(){
  yield '1';
  yield '23';
  yield *twolines();
  yield '456';
}

genread(fivelines()).pipe(process.stdout)