@webqit/observer 3.0.0 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,13 @@ This is discussed extensively in [the introductory blog post](https://dev.to/oxh
|
|
|
20
20
|
|
|
21
21
|
We find a design precedent to object observability in the [`Object.observe()`](https://web.dev/es7-observe/) API, which at one time checked all the boxes and touched the very pain points we have today! The idea with the new **Observer API** is to re-explore that unique design with a more wholistic approach that considers the broader subject of Reactive Programming in JavaScript!
|
|
22
22
|
|
|
23
|
+
## Status
|
|
24
|
+
|
|
25
|
+
+ Working implementation via a polyfill
|
|
26
|
+
+ Integral to the [Quantum JS project](https://github.com/webqit/quantum-js)
|
|
27
|
+
+ Actively developed
|
|
28
|
+
+ Open to contributions
|
|
29
|
+
|
|
23
30
|
## An Overview
|
|
24
31
|
|
|
25
32
|
The Observer API is a set of utility functions - notably, the `Observer.observe()` and `Observer.intercept()` methods - for all things object observability.
|