@slimlib/store 2.0.0 → 2.0.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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ It also works really well with imperative code because the state primitive is Pr
|
|
|
11
11
|
- **Relatively small and tree shakable** - less than 5KiB minified, you pay only for what you use
|
|
12
12
|
- **GC friendly** - all primitives can be garbage collected
|
|
13
13
|
- **Easy batching** - by default it is batched to the next microtask, but it is configurable
|
|
14
|
-
- **Relatively fast** - it is not faster than Alien
|
|
14
|
+
- **Relatively fast** - it is not faster than Alien Signals, but faster than other big frameworks (it truly depends on the scenario)
|
|
15
15
|
- **Proxy-based state** - easy to understand imperative code, signal alternative is also provided
|
|
16
16
|
- **Dev mode** - you get warnings when you do stupid things
|
|
17
17
|
|
|
@@ -774,7 +774,7 @@ For truly zero-cost production builds (complete code elimination), ensure your b
|
|
|
774
774
|
|
|
775
775
|
- Mixing proxied values and values from an underlying object can fail for equality checks
|
|
776
776
|
- Effects run on microtask by default, not synchronously (use `flushEffects()` for immediate execution)
|
|
777
|
-
- Effects are not removed until the next flush if they already scheduled but disposed
|
|
777
|
+
- Effects are not removed until the next flush if they are already scheduled but disposed
|
|
778
778
|
|
|
779
779
|
## Similar Projects
|
|
780
780
|
|