JSPM

stream-generators

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q27277F
  • License MIT

Pipe ES6 Generators through Node.js streams

Package Exports

  • stream-generators

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (stream-generators) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

stream-generators

Pipe ES6 Generators through Node.js Streams.

npm version build status dependencies devDependencies

Usage

var streamify = require('stream-generators')
    , os = require('os')
    , gen = function*() {
        yield '1';
        yield '2';
        yield '3';
        yield os.EOL;
    }
;

streamify(gen).pipe(process.stdout);
123\n

API

streamify(function*)

The result of require is a 'function()' that when invoked, will return a Readable Stream.

var generator = function*() {
    yield 1;
    yield 2;
};
var streamify = require('stream-generators');
var readable = streamify(generator);

This Stream will [push][14] each element from the generator into the [piped][15] array.

Install

npm install stream-generators

License

MIT License