AB*C [A --a--------] [B -b-b-b-b-b-] [C --------c--] [= --ab-b-bc| ] Reactive Query Language 📖 Intro Extract events from multiple streams using query commands 📦 Install npm i rx-rql Or try it online 🔧 API Query root Your query should be wrapped in a query or $ function query(A, B, C).subscribe(console.log); It returns an Observable of query results! A, B, C — single emission To select a single event from a stream — just pass that stream to the query function or one of the operators: // $ A // A ---Hi----- // = ---(H|) const A = of('H', 'i'); query(A).subscribe(console.log); // > H // $ AA // A ---Hi----- // = ---H(i|) query(A, A).…
I've published npm package to make queries to RxJS streams
AB*C
AB*C[A --a--------][B -b-b-b-b-b-][C --------c--][= --ab-b-bc| ]Reactive Query Language
Extract events from multiple streams using query commands
Or try it online
Query root
Your query should be wrapped in a
queryor$functionIt returns an Observable of query results!
A,B,C— single emissionTo select a single event from a stream — just pass that stream to the
queryfunction or one of the operators:that wasn't easy
Nice!