Skip to content
David Chase edited this page Nov 15, 2016 · 10 revisions

These recipes show how to use existing operations to build new ones, how to solve problems in interesting ways, and are also helpful in learning how to "think in streams".

General

  • Repeat - Repeat the behavior of a stream N times
  • Pairwise - Create a stream of pairs [previous value, current value]
  • Race - Pick the stream with the earliest first event

DOM Events

Promises