dphelper 4.0.1 → 4.1.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 +12 -27
- package/dphelper.umd.js +1 -1
- package/index.cjs +1 -1
- package/package.json +1 -1
- package/types/global.d.ts +8 -0
package/README.md
CHANGED
|
@@ -22,6 +22,18 @@
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
+
## Table of Contents
|
|
26
|
+
|
|
27
|
+
1. [About](#about)
|
|
28
|
+
2. [Installation](#installation)
|
|
29
|
+
3. [AI Power User Guide](#ai-power-user-guide)
|
|
30
|
+
4. [Modular Architecture](#modular-architecture)
|
|
31
|
+
5. [Browser Extension (Chrome/Edge)](#browser-extension-chromeedge)
|
|
32
|
+
6. [Environment Compatibility](#environment-compatibility)
|
|
33
|
+
7. [Security](#security)
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
25
37
|
## About
|
|
26
38
|
|
|
27
39
|
**dphelper** is a powerful, zero-dependency utility library that brings together **303 production-ready tools** for web developers, AI engineers, and DevTools creators.
|
|
@@ -58,18 +70,6 @@ If you need to use state/store management please consider:
|
|
|
58
70
|
|
|
59
71
|
---
|
|
60
72
|
|
|
61
|
-
## Table of Contents
|
|
62
|
-
|
|
63
|
-
1. [About](#about)
|
|
64
|
-
2. [Installation](#installation)
|
|
65
|
-
3. [AI Power User Guide](#ai-power-user-guide)
|
|
66
|
-
4. [Modular Architecture](#modular-architecture)
|
|
67
|
-
5. [Browser Extension (Chrome/Edge)](#browser-extension-chromeedge)
|
|
68
|
-
6. [Environment Compatibility](#environment-compatibility)
|
|
69
|
-
7. [Security](#security)
|
|
70
|
-
|
|
71
|
-
---
|
|
72
|
-
|
|
73
73
|
## Installation
|
|
74
74
|
|
|
75
75
|
```shell
|
|
@@ -100,21 +100,6 @@ For plain HTML/CDN:
|
|
|
100
100
|
|
|
101
101
|
---
|
|
102
102
|
|
|
103
|
-
## 🚀 New Powerful Modules
|
|
104
|
-
|
|
105
|
-
`dphelper` has expanded with powerful new modules for modern web development:
|
|
106
|
-
|
|
107
|
-
### ✨ Highlights
|
|
108
|
-
|
|
109
|
-
- **💾 IndexedDB Module**: Full-featured wrapper for IndexedDB with query builder, transactions, and bulk operations.
|
|
110
|
-
- **⚙️ Web Worker Module**: Create and manage workers, worker pools for parallel processing, and SharedWorkers for cross-tab communication.
|
|
111
|
-
- **🌍 i18n Module**: Complete internationalization with translations, pluralization, date/number formatting, and relative time.
|
|
112
|
-
- **🖼️ Image Module**: Image processing including resize, crop, filters, rotation, flip, and compositing.
|
|
113
|
-
- **🗜️ Compression Module**: Gzip, deflate, LZW compression, plus base64, URL, and HTML encoding/decoding.
|
|
114
|
-
- **🔐 Biometric Module**: WebAuthn support for fingerprint, face recognition, and secure credential management.
|
|
115
|
-
|
|
116
|
-
---
|
|
117
|
-
|
|
118
103
|
## ⚙️ Web Worker Module
|
|
119
104
|
|
|
120
105
|
```javascript
|