From f6a7e2bda3028bde6f4b42807ad6e0f939f23688 Mon Sep 17 00:00:00 2001 From: Bernhard Date: Thu, 6 May 2021 11:01:39 +0200 Subject: [PATCH] Update rx.js trial->adopt --- radar/2021-01-01/rxjs.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 radar/2021-01-01/rxjs.md diff --git a/radar/2021-01-01/rxjs.md b/radar/2021-01-01/rxjs.md new file mode 100644 index 0000000..73b80ea --- /dev/null +++ b/radar/2021-01-01/rxjs.md @@ -0,0 +1,17 @@ +--- +title: "RxJs" +ring: adopt +quadrant: languages-and-frameworks + +--- +RX/JS aka reactive streams + +RxJS is an implementation for the reactive programming paradigm which implements mostly the observer and iterator +pattern and follows the functional programming ideas. The pattern actually got a renaissance because it's not completely +new but has new implementations in many frameworks and languages like Angular, Akka, Spring and many more. Reason for +that attention actually is (in the javascript world), that observables can be cancelled (by rules too) and observables +can pass (stream) data on multiple events. Both aspects are not well realizable using promises e.g. and both were also +detected as a huge limitation in the JavaScript community — and so it's worth to get an understanding for reactive +programming in general. + +We at AOE actually use RxJS in combination with Angular and can fully recommend the approach of observables.