react-state-basis 0.1.0 → 0.1.1
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 +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
[](https://www.npmjs.com/package/react-state-basis)
|
|
2
|
+
[](https://github.com/liovic/react-state-basis#readme)
|
|
2
3
|
|
|
3
4
|
# 📐 REACT-STATE-BASIS
|
|
4
5
|
### **Behavioral State Analysis for React**
|
|
@@ -18,6 +19,14 @@ Inspired by the work of **Sheldon Axler** (*"Linear Algebra Done Right"*), Basis
|
|
|
18
19
|
|
|
19
20
|
---
|
|
20
21
|
|
|
22
|
+
## 📦 Installation
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npm i react-state-basis
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
21
30
|
## 🧠 The Philosophy: State as a Vector Space
|
|
22
31
|
|
|
23
32
|
In a perfectly architected application, every state variable should represent a **unique dimension of information**.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-state-basis",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A linear algebra-powered React architectural tool that detects redundant state and synchronization anti-patterns by modeling state transitions as vectors in a basis.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|