@yiin/reactive-proxy-state 1.0.7 → 1.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.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Reactive Proxy State
|
|
2
2
|
|
|
3
|
-
[](https://badge.fury.io/js/%40yiin%2Freactive-proxy-state)
|
|
3
|
+
[](https://badge.fury.io/js/%40yiin%2Freactive-proxy-state) [](https://github.com/Yiin/reactive-proxy-state/actions/workflows/test.yml) [](https://codecov.io/gh/Yiin/reactive-proxy-state)
|
|
4
4
|
|
|
5
|
-
A simple, standalone reactivity library inspired by Vue 3's reactivity system, designed for use outside of Vue, particularly in server-side contexts or for data synchronization tasks. It uses JavaScript Proxies to track changes in plain objects, Arrays, Maps, and Sets.
|
|
5
|
+
A simple, standalone reactivity library inspired by Vue 3's reactivity system, designed for use outside of Vue, particularly in server-side contexts or for data synchronization tasks. It uses JavaScript Proxies to track changes in plain objects, Arrays, Maps, and Sets. Notably, it includes mechanisms for serializing and applying state changes (see [`updateState`](./docs/api/update-state.md)), enabling use cases like state replication between different environments (e.g., server-client, main thread-worker), a feature not typically found in core reactivity libraries.
|
|
6
6
|
|
|
7
7
|
**Note:** This library currently only supports synchronous effect execution.
|
|
8
8
|
|