react-hooks-global-states 8.2.3 → 8.2.4

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 +20 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -19,6 +19,26 @@ Works seamlessly with **React & React Native**:
19
19
 
20
20
  ---
21
21
 
22
+ ## 🚀 React Hooks Global States - DevTools Extension
23
+
24
+ React Hooks Global States includes a dedicated, `devTools extension` to streamline your development workflow! Easily visualize, inspect, debug, and modify your application's global state in real-time right within your browser.
25
+
26
+ ### 🔗 [Install the DevTools Extension for Chrome](https://chromewebstore.google.com/detail/bafojplmkpejhglhjpibpdhoblickpee/preview?hl=en&authuser=0)
27
+
28
+ ### 📸 DevTools Highlights
29
+
30
+ | **Track State Changes** | **Modify the State** |
31
+ | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
32
+ | ![Track State Changes](https://github.com/johnny-quesada-developer/react-hooks-global-states/raw/main/public/track-state-changes.png) | ![Modify the State](https://github.com/johnny-quesada-developer/react-hooks-global-states/raw/main/public/modify-the-state.png) |
33
+ | Effortlessly monitor state updates and history. | Instantly edit global states directly from the extension. |
34
+
35
+ ---
36
+
37
+ | **Restore the State** | **Custom Actions Granularity** |
38
+ | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
39
+ | ![Restore the State](https://github.com/johnny-quesada-developer/react-hooks-global-states/raw/main/public/restore-the-state.png) | ![Custom Actions Granularity](https://github.com/johnny-quesada-developer/react-hooks-global-states/raw/main/public/custom-actions-granularity.png) |
40
+ | Quickly revert your application to a previous state. | Precisely debug specific actions affecting state changes. |
41
+
22
42
  ## 🛠 Creating a Global State
23
43
 
24
44
  Define a **global state** in **one line**:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-hooks-global-states",
3
- "version": "8.2.3",
3
+ "version": "8.2.4",
4
4
  "description": "This is a package to easily handling global-state across your react-components using hooks.",
5
5
  "main": "./bundle.js",
6
6
  "types": "./index.d.ts",