diff --git a/js/components/PageHelp.js b/js/components/PageHelp.js index b3aa936..8238886 100644 --- a/js/components/PageHelp.js +++ b/js/components/PageHelp.js @@ -40,7 +40,7 @@ export default function PageHelp({ leaving, onLeave, ...props }) {
We also maintain a short list of useful tools - that are not worth putting on the radar - but that can belong in everyone's "toolbox". We call the list of these technologies the AOE Toolbox and you can find information about them here: AOE Toolbox
-Contributions and source code of the radar are on github: AOE Tech Rdar on Github
+Contributions and source code of the radar are on github: AOE Tech Radar on Github
diff --git a/package.json b/package.json index 1bcb9f3..fd5c26d 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "history": "4.7.2", "live-server": "1.2.0", "marked": "0.3.9", - "moment": "2.19.2", + "moment": "2.19.3", "postcss-cli": "4.1.1", "postcss-css-variables": "0.8.0", "postcss-custom-media": "^6.0.0", diff --git a/radar/2017-03-01/rxjs.md b/radar/2017-03-01/rxjs.md new file mode 100644 index 0000000..461123d --- /dev/null +++ b/radar/2017-03-01/rxjs.md @@ -0,0 +1,17 @@ +--- +title: "RxJs" +ring: trial +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 think that it's worth to dive deeper into this paradigm. \ No newline at end of file