state-jet 2.0.18 → 2.0.19

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 +7 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,9 +8,9 @@ For more details, see [here](https://statejet.netlify.app).
8
8
 
9
9
  ## Table of Contents
10
10
 
11
- - [🚀 Why state-jet?](#why-state-jet?)
11
+ - [Why state-jet?](#why-state-jet?)
12
12
  - [Documentation](#documentation)
13
- - [🛠 Installation](#installation)
13
+ - [Installation](#installation)
14
14
  - [GlobalState](#globalstate)
15
15
  - [Create GlobalState](#create-globalstate)
16
16
  - [Binding Global State to a Component](#binding-global-state-to-a-component)
@@ -29,14 +29,14 @@ For more details, see [here](https://statejet.netlify.app).
29
29
  - [Why state-jet Is More Advanced Than Zustand](#why-state-jet-is-more-advanced-than-zustand)
30
30
  - [FAQ](#faq)
31
31
  - [Conclusion](#conclusion)
32
- - [Comparison Table](#comparison-table)
32
+ - [Comparison Table](#comparison-table)
33
33
  - [Comparison with other libraries](#comparison-with-other-libraries)
34
34
  - [Contributing](#contributing)
35
35
  - [Publishing](#publishing)
36
36
  - [Feedbacks and Issues](#feedbacks-and-issues)
37
37
  - [License](#license)
38
38
 
39
- ## 🚀 Why state-jet?
39
+ ## Why state-jet?
40
40
 
41
41
  - ✅ **No Context, No Providers** – Works outside React, reducing unnecessary re-renders.
42
42
  - ✅ **Automatic Re-Renders** – Only components using specific state values update.
@@ -53,7 +53,7 @@ API Reference: https://statejet.netlify.app/docs/api-reference/global-state/
53
53
 
54
54
  Wiki: https://deepwiki.com/venkateshsundaram/state-jet
55
55
 
56
- ## 🛠 Installation
56
+ ## Installation
57
57
 
58
58
  The Statejet package lives in npm. Please see the [installation guide](https://statejet.netlify.app/docs/getting-started/installation-and-setup/).
59
59
 
@@ -488,10 +488,10 @@ const todoState = useStateGlobal<Todo[]>("todos", []);
488
488
 
489
489
  ## Conclusion
490
490
 
491
- If you need the simplest, fastest, and most advanced state management solution for React, state-jet beats Redux, Recoil, MobX, Jotai, and even Zustand in performance, reactivity, and developer experience. 🚀
491
+ If you need the simplest, fastest, and most advanced state management solution for React, state-jet beats Redux, Recoil, MobX, Jotai, and even Zustand in performance, reactivity, and developer experience 🚀.
492
492
 
493
493
 
494
- ## Comparison Table
494
+ ## Comparison Table
495
495
  | Feature | Redux | Recoil | MobX | Jotai | Zustand | state-jet |
496
496
  |--------------------------|--------|--------|-------|--------|------------------------|----------------------|
497
497
  | **Easy Setup** | ❌ No | ❌ No | ⚠️ No | ❌ No | ⚠️ Minimal | ✅ Ultra-Minimal |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "state-jet",
3
- "version": "2.0.18",
3
+ "version": "2.0.19",
4
4
  "description": "Ultra-lightweight global state management for React",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",