@fest-lib/object 0.1.16 → 0.1.18
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 +6 -8
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
# Object.TS
|
|
2
2
|
|
|
3
|
+
`@fest-lib/object` — reactive proxies, refs, computed/derived values, and collection observe for fest-lib. Sits above `@fest-lib/core`. LUR.E and FL.UI subscribe through `affected`.
|
|
4
|
+
|
|
3
5
|
<img src="https://img.shields.io/github/license/fest-live/object.ts?style=flat-square" alt="License"> <img src="https://img.shields.io/github/stars/fest-live/object.ts?style=flat-square" alt="Stars"> <img src="https://img.shields.io/github/last-commit/fest-live/object.ts?style=flat-square" alt="Last Commit">
|
|
4
6
|
|
|
5
|
-
[](https://www.npmjs.com/package/@fest-lib/object)
|
|
6
8
|
[](https://github.com/fest-live/object.ts/actions)
|
|
7
9
|
[](https://codecov.io/gh/fest-live/object.ts)
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
**Object.ts** is a lightweight library providing reactive primitives and object utilities for JavaScript. It is a minor sibling of [`Uniform.TS`](https://github.com/fest-live/uniform.ts), originally created in early 2024 and partially revisited in 2025. The library is primarily used in internal projects and is designed to be compatible with modern reactive libraries.
|
|
12
|
-
|
|
13
|
-
The current version provides a comprehensive reactivity system with non-intrusive subscriptions, efficient change detection, and compatibility with modern JavaScript frameworks.
|
|
11
|
+
Subscriptions do not retain the target. Updates fire only on actual value changes.
|
|
14
12
|
|
|
15
13
|
## Table of Contents
|
|
16
14
|
|
|
@@ -59,7 +57,7 @@ The current version provides a comprehensive reactivity system with non-intrusiv
|
|
|
59
57
|
### Install
|
|
60
58
|
|
|
61
59
|
```bash
|
|
62
|
-
npm i @fest-lib/object
|
|
60
|
+
npm i @fest-lib/object
|
|
63
61
|
```
|
|
64
62
|
|
|
65
63
|
### Importing
|
|
@@ -114,7 +112,7 @@ import {
|
|
|
114
112
|
createReactive,
|
|
115
113
|
createReactiveMap,
|
|
116
114
|
createReactiveSet
|
|
117
|
-
} from "@fest-lib/object
|
|
115
|
+
} from "@fest-lib/object";
|
|
118
116
|
```
|
|
119
117
|
|
|
120
118
|
### Quick start
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fest-lib/object",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "0.1.
|
|
3
|
+
"description": "fest-lib reactivity: observe, affected, refs, computed, collection proxies",
|
|
4
|
+
"version": "0.1.18",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"sideEffects": false,
|