Socket
Book a DemoInstallSign in
Socket

stream-generators

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stream-generators

Pipe ES6 Generators through Node.js streams

0.1.1
latest
Source
npmnpm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

es6

FAQs

Package last updated on 01 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.