You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-3Lines changed: 24 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -731,18 +731,39 @@ There are several collections on Stackblitz with over 200 examples that can get
731
731
732
732
[The Collection](https://stackblitz.com/@dariomannu/collections/rimmel-js-experiments) 🧞 Stream-Oriented programming examples using Rimmel.
733
733
734
+
### Recipes
735
+
How to do stream-oriented this and that
736
+
737
+
[Drag'n'Drop](https://stackblitz.com/orgs/github/ReactiveHTML/collections/drad-and-drop) Several different ways to implement drag'n'drop
738
+
739
+
[Fetching Data](https://stackblitz.com/orgs/github/ReactiveHTML/collections/fetching-data) Connecting to REST APIs
740
+
741
+
[UI Components](https://stackblitz.com/orgs/github/ReactiveHTML/collections/ui-components) How streams make it simpler to manage any sort of UI component
742
+
743
+
[Dialog Boxes](https://stackblitz.com/orgs/github/ReactiveHTML/collections/dialog-boxes) From popups to login boxes and forms
744
+
745
+
[Observable Types](https://stackblitz.com/orgs/github/ReactiveHTML/collections/observable-types) When lists are involved, consider this
746
+
734
747
### Experiments
735
748
This is the cutting-edge of what you can do with Rimmel, still being refined here and there, but will show you where things are going and maybe give you some inspiration.
736
749
737
750
[Web Components](https://stackblitz.com/@dariomannu/collections/web-components) 🧩 Experimental support for custom elements and web components in stream-oriented style.
738
751
739
752
[Web Workers](https://stackblitz.com/@dariomannu/collections/web-workers) 🛠️ Experiments running your Rimmel components inside web workers
740
753
741
-
[Novel Design Patterns](https://stackblitz.com/@dariomannu/collections/novel-design-patterns) 📖 What makes stream-oriented programming different
754
+
[Novel Design Patterns](https://stackblitz.com/@dariomannu/collections/novel-design-patterns) 📖 What makes stream-oriented programming unique
755
+
756
+
[Native Observables](https://stackblitz.com/orgs/github/ReactiveHTML/collections/native-observables-in-rimmel-js) 👶 A few ways to integrate with the current web standards proposal for native Observables.
757
+
758
+
[Observable Polyfill](https://stackblitz.com/@dariomannu/collections/observable-polyfill) 🧴 Stream-oriented examples for when you need a native polyfill
759
+
760
+
[Callforwards](https://stackblitz.com/orgs/github/ReactiveHTML/collections/callforwards) 🤙 Want to explore alternative stream types beside Observables?
761
+
762
+
[LeapingBunny](https://stackblitz.com/@dariomannu/collections/leapingbunny) 💉 Unit testing your streams and components with ASCII-ART sequences
742
763
743
-
[Observable Polyfill](https://stackblitz.com/@dariomannu/collections/observable-polyfill) 🧴 stream-oriented examples for the [observable-polyfill](https://github.com/keithamus/observable-polyfill/).
764
+
[WebGL/WebGPU](https://stackblitz.com/orgs/github/ReactiveHTML/collections/webgl-webgpu) 🎲 Integrations with THREE.js
744
765
745
-
[Native Observables](https://stackblitz.com/orgs/github/ReactiveHTML/collections/native-observables-in-rimmel-js) 👶 Experiments using native Observables.
766
+
[Security](https://stackblitz.com/@paperboy/collections/rimmel-js-security) 🔒 Hardening your stream-oriented applications
// We also force-add an event listener if we're inside a ShadowRoot (do we really need to?), as events inside web components don't seem to fire otherwise
12
-
if(USE_DOM_OBSERVABLES&&node.when){
12
+
if(USE_DOM_OBSERVABLES&&(nodeasany).when){
13
13
// Explicitly excluding the isEventListenerObject as Domenic doesn't want .when() to support it
0 commit comments