web-utilities-rxjs

Installation
SKILL.md

RxJS Reactive Programming Patterns

Quick Guide: RxJS composes async work as streams. Observables are lazy — nothing runs until subscribe() — and operators inside pipe() describe a pipeline rather than execute one. Three decisions carry most of the weight: which flattening operator (switchMap cancels, mergeMap parallelises, concatMap queues, exhaustMap ignores), where catchError sits (inside the inner pipe, or an error kills the outer stream permanently), and how the subscription ends. Suffix observable variables with $.

Detailed Resources:


Installs
29
GitHub Stars
24
First Seen
Apr 7, 2026
web-utilities-rxjs — agents-inc/skills