pull-stream / pull-stream-faq

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pull-streams: there is a module for that!

how can I achieve 1:many and many:1 transforms?

how do I interop with node streams? are there any caveats?

  • use stream-to-pull-stream back pressure will still work correctly. make sure you use toPull.source(readable) toPull.sink(writable) or toPull.duplex(duplex).

is there a way I can push to a pull stream?

generally, avoid doing this if you can because you'll loose back pressure, but if you must

can i apply a async function over pull-stream input?

I need to return a stream immediately, but need to do something async first, how?

can I concat two pull-streams

yes.

How do I fork a pull-stream?

eg: if there's an error, I want to stream to stderr, otherwise stream to stdout

About