Skip to content
Brian Cavalier edited this page Aug 13, 2017 · 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
  • Retry - Retry a stream up to N times after failures
  • Pairwise - Create a stream of pairs [previous value, current value]
  • Race - Pick the stream with the earliest first event

DOM Events

Promises