@simplestack/store 0.6.0 → 0.6.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 +5 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Simple Store
|
|
2
2
|
|
|
3
|
-
A simple, `select`-xcellent state management library
|
|
3
|
+
A simple, `select`-xcellent state management library for React.
|
|
4
|
+
|
|
5
|
+
The goal: make a storage solution as powerful as Zustand or Redux, without complicated functions to set and select state.
|
|
6
|
+
|
|
7
|
+
Here's an overview of how stores are created, and how you can operate on parts of a store using `.select()`:
|
|
4
8
|
|
|
5
9
|
```tsx
|
|
6
10
|
import { store } from "@simplestack/store";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplestack/store",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "A simple storage solution for React",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
],
|
|
24
24
|
"author": "bholmesdev",
|
|
25
25
|
"license": "MIT",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/bholmesdev/simplestack-store.git"
|
|
29
|
+
},
|
|
26
30
|
"devDependencies": {
|
|
27
31
|
"@biomejs/biome": "2.2.2",
|
|
28
32
|
"@types/react": "^19.1.12",
|