Skip to content
This repository has been archived by the owner on Nov 28, 2018. It is now read-only.

Commit

Permalink
add note for gulp 4 in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
北川 committed Sep 6, 2018
1 parent 918d4a3 commit 50c0edb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions readme.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

[Streams](http://nodejs.org/api/stream.html "Stream") are node's best and most misunderstood idea, and EventStream is a toolkit to make creating and working with streams easy.

Normally, streams are only used for IO, but in event stream we send all kinds of objects down the pipe. If your application's input and output are streams,
shouldn't the throughput be a stream too?
Normally, streams are only used for IO, but in event stream we send all kinds of objects down the pipe. If your application's input and output are streams, shouldn't the throughput be a stream too?

The *EventStream* functions resemble the array functions, because Streams are like Arrays, but laid out in time, rather than in memory.

Expand All @@ -13,6 +12,8 @@ All the `event-stream` functions return instances of `Stream`.

>NOTE: I shall use the term <em>"through stream"</em> to refer to a stream that is writable <em>and</em> readable.
>NOTE for Gulp users: Merge will not work for gulp 4. [merge-stream](https://npmjs.com/merge-stream) should be used.
### [simple example](https://github.com/dominictarr/event-stream/blob/master/examples/pretty.js):

``` js
Expand Down

0 comments on commit 50c0edb

Please sign in to comment.