dphelper 3.0.0 → 3.0.2
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 +13 -9
- package/dphelper.umd.js +173 -0
- package/index.js +15 -15
- package/package.json +99 -96
package/README.md
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|

|
|
4
4
|
|
|
5
5
|
**The supercharged toolkit for modern web development, AI engineering & DevTools.**
|
|
6
|
-
By [Dario Passariello](https://dario.passariello.ca) (c)
|
|
7
6
|
|
|
8
7
|
[](https://npmjs.org/package/dphelper)
|
|
9
8
|
[](https://npmjs.org/package/dphelper)
|
|
@@ -40,17 +39,18 @@ Think of it as your **universal toolbox** - from DOM manipulation to cryptograph
|
|
|
40
39
|
|
|
41
40
|
---
|
|
42
41
|
|
|
43
|
-
## 🚀 Version 3.0: The AI Leap
|
|
44
|
-
|
|
45
42
|
> [!IMPORTANT]
|
|
46
|
-
> Application state is currently handled through Memorio and RGS.
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
43
|
+
> Application state is currently handled through Memorio and RGS.
|
|
44
|
+
|
|
45
|
+
## To integrate state management into your project
|
|
46
|
+
|
|
47
|
+
- Simple State and Store Manager [Memorio](http://www.npmjs.com/package/memorio)
|
|
48
|
+
- Enterprise Lever State Manager [Argis RGS](https://www.npmjs.com/package/@biglogic/rgs)
|
|
51
49
|
|
|
52
50
|
---
|
|
53
51
|
|
|
52
|
+
## 🚀 Version 3.0: The AI Leap
|
|
53
|
+
|
|
54
54
|
`dphelper` has evolved into a powerhouse for AI-driven applications. We've removed legacy dependencies (bye-bye jQuery!) and shifted focus to **performance**, **modularity**, and **LLM optimization**.
|
|
55
55
|
|
|
56
56
|
### ✨ Highlights
|
|
@@ -97,7 +97,11 @@ import "dphelper";
|
|
|
97
97
|
For plain HTML/CDN:
|
|
98
98
|
|
|
99
99
|
```html
|
|
100
|
-
<script src="https://
|
|
100
|
+
<script src="https://unpkg.com/dphelper@3.0.1/dphelper.umd.js"></script>
|
|
101
|
+
<script>
|
|
102
|
+
console.log(dphelper.version); // 3.0.1
|
|
103
|
+
console.log(dphelper.isBrowser); // true
|
|
104
|
+
</script>
|
|
101
105
|
```
|
|
102
106
|
|
|
103
107
|
---
|