rxfy 0.1.1 → 0.2.0
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 +14 -0
- package/dist/index.cjs +4987 -2
- package/dist/index.d.cts +96 -2
- package/dist/index.d.ts +96 -2
- package/dist/index.js +4946 -2
- package/package.json +29 -15
- package/dist/index.cjs.map +0 -1
- package/dist/index.js.map +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# rxfy
|
|
2
|
+
|
|
3
|
+
rxfy (/ɑɹ ɪks faɪ/) — observables-based data flow management
|
|
4
|
+
|
|
5
|
+
# install
|
|
6
|
+
|
|
7
|
+
`pnpm install rxfy`
|
|
8
|
+
|
|
9
|
+
# api
|
|
10
|
+
|
|
11
|
+
- Atom — BehaviorSubject successor
|
|
12
|
+
- Lens — lensed atom with getter and setter
|
|
13
|
+
- Store — where all the data stored
|
|
14
|
+
- Edge — data handler and accessor
|