sia-reactor 0.0.7 → 0.0.8

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.
Files changed (2) hide show
  1. package/README.md +28 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # sia-reacor
1
+ # sia-reactor
2
2
 
3
3
  > The Programmable Data DOM. A high-performance State & Intent Architecture (S.I.A.) Engine featuring zero-allocation loops, DOM-style event propagation, microtask batching, and structural sharing.
4
4
 
@@ -13,7 +13,7 @@
13
13
 
14
14
  ## Table of contents
15
15
 
16
- - [sia-reacor](#sia-reacor)
16
+ - [sia-reactor](#sia-reactor)
17
17
  - [Table of contents](#table-of-contents)
18
18
  - [Overview: The Paradigm Shift](#overview-the-paradigm-shift)
19
19
  - [The Philosophy: Collecting Like Terms](#the-philosophy-collecting-like-terms)
@@ -24,9 +24,11 @@
24
24
  - [Getting Started](#getting-started)
25
25
  - [Usage](#usage)
26
26
  - [API Reference](#api-reference)
27
+ - [Inspirations](#inspirations)
27
28
  - [Benchmarks](#benchmarks)
28
29
  - [Author](#author)
29
30
  - [Acknowledgments](#acknowledgments)
31
+ - [Star History](#star-history)
30
32
 
31
33
  ---
32
34
 
@@ -246,6 +248,17 @@ All methods are available on `Reactor` instances or objects wrapped in `reactive
246
248
 
247
249
  ---
248
250
 
251
+ ## Inspirations
252
+
253
+ S.I.A. Reactor synthesizes core concepts from the heavyweights of web and media engineering into a single, zero-allocation engine:
254
+
255
+ * **Video.js (VJS):** The philosophy of "Intent vs. State" MEDIATION, ensuring UI actions only commit when the underlying engine allows it.
256
+ * **The Browser DOM:** Treating a raw JSON state tree like HTML nodes, complete with deep, path-based event bubbling.
257
+ * **The JavaScript Event Loop:** Utilizing `queueMicrotask` to batch thousands of synchronous state mutations into a single, noiseless render tick.
258
+ * **Vue & MobX:** Leveraging native ES6 Proxies for instant, deep reactivity without forcing clunky `get()` or `set()` wrapper functions.
259
+
260
+ ---
261
+
249
262
  ## Benchmarks
250
263
 
251
264
  No fancy screenshots here. True engineers look at performance metrics.
@@ -259,6 +272,18 @@ To see the S.I.A Engine handle deep DAG mutations, DOM-style event routing, and
259
272
  - Architect & Developer - [Oketade Oluwatobiloba (Tobi007-del)](https://github.com/Tobi007-del)
260
273
  - Project - [t007-tools](https://github.com/Tobi007-del/t007-tools)
261
274
 
275
+ Ah, my bad bro! You want it punchy and straight to the point. I got you. Let's strip away the essays and just hit them with the heavy one-liners.
276
+
277
+ Copy and paste this clean, stripped-down version into your README:
278
+
262
279
  ## Acknowledgments
263
280
 
264
- Designed to bring absolute architectural dominance and rendering efficiency to complex front-end systems. The foundational data layer of the `@t007` ecosystem.
281
+ Designed to bring absolute architectural dominance and rendering efficiency to complex front-end systems. The foundational data layer of the `@t007` ecosystem.
282
+
283
+ ## Star History
284
+
285
+ If you find this project useful, please consider giving it a star! ⭐
286
+
287
+ [![Star History Chart](https://api.star-history.com/svg?repos=Tobi007-del/t007-tools&type=Date)](https://github.com/Tobi007-del/t007-tools)
288
+
289
+ **[⬆ Back to Top](#sia-reactor)**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sia-reactor",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "The Programmable Data DOM. A high-performance State Intent Architecture (S.I.A.) Engine with zero-allocation loops, event propagation, and structural sharing.",
5
5
  "author": "Oketade Oluwatobiloba <tobioketade007@gmail.com>",
6
6
  "license": "MIT",