git ssb

2+

Dominic / pull-stream



Commit 3be0e0173765bd5dae4634a616c3b079b977b51b

Merge branch 'master' into split-docs

Dominic Tarr committed on 6/13/2016, 12:33:31 AM
Parent: 7d0c918beaee414a6b11f020b51dfb097122ede0
Parent: 019de9e4266b7574ce6cf22a56c1cb051638fe1a

Files changed

README.mdchanged
README.mdView
@@ -26,19 +26,25 @@
2626 )
2727 ```
2828 note that `pull(a, b, c)` is basically the same as `a.pipe(b).pipe(c)`.
2929
30-The best thing about pull-stream is that it can be completely lazy.
31-This is perfect for async traversals where you might want to stop early.
30+to grok how pull-streams work, read through [pull-streams by example](https://github.com/dominictarr/pull-stream-examples)
3231
32+## How do I do X with pull-streams?
33+
34+There is a module for that!
35+
36+Check the [pull-stream FAQ](https://github.com/pull-stream/pull-stream-faq)
37+and post an issue if you have a question that is not on that.
38+
3339 ## Compatibily with node streams
3440
3541 pull-streams are not _directly_ compatible with node streams,
3642 but pull-streams can be converted into node streams with
3743 [pull-stream-to-stream](https://github.com/dominictarr/pull-stream-to-stream)
3844 and node streams can be converted into pull-stream using [stream-to-pull-stream](https://github.com/dominictarr/stream-to-pull-stream)
45+correct back pressure is preserved.
3946
40-
4147 ### Readable & Reader vs. Readable & Writable
4248
4349 Instead of a readable stream, and a writable stream, there is a `readable` stream,
4450 (aka "Source") and a `reader` stream (aka "Sink"). Through streams
@@ -313,4 +319,5 @@
313319
314320 ## License
315321
316322 MIT
323+

Built with git-ssb-web