pull-tomany

1.0.0 • Public • Published

pull-tomany

Duplicate chunks in a pull stream to multiple sinks with back pressure and handling all errors and abort.

Basic example

use an array of streams to write into.

var pull = require('pull-stream')
var tomany = require('pull-tomany')
pull(
  pull.values([1,2,3,4,5]),
  //tomany is a sink, so it's the last thing in the pipeline.
  tomany([
    pull.collect(console.log), // => [1,2,3,4,5]
    pull.collect(console.log), // => [1,2,3,4,5]
    pull.collect(console.log)  // => [1,2,3,4,5]
  ])
)

License

MIT

/pull-tomany/

    Package Sidebar

    Install

    npm i pull-tomany

    Weekly Downloads

    0

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • pfraze