dphelper 3.9.0 → 3.9.5

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 (63) hide show
  1. package/ai-plugin.json +1 -1
  2. package/index.cjs +1 -1
  3. package/index.js +1 -1
  4. package/llms.txt +9 -3
  5. package/package.json +1 -1
  6. package/docs/README.md +0 -402
  7. package/docs/SUMMARY.md +0 -83
  8. package/docs/_config.yml +0 -1
  9. package/docs/markdown/ai.md +0 -345
  10. package/docs/markdown/anchor.md +0 -156
  11. package/docs/markdown/array.md +0 -208
  12. package/docs/markdown/audio.md +0 -113
  13. package/docs/markdown/avoid.md +0 -53
  14. package/docs/markdown/biometric.md +0 -338
  15. package/docs/markdown/browser.md +0 -203
  16. package/docs/markdown/check.md +0 -65
  17. package/docs/markdown/color.md +0 -159
  18. package/docs/markdown/compress.md +0 -310
  19. package/docs/markdown/cookie.md +0 -115
  20. package/docs/markdown/coords.md +0 -127
  21. package/docs/markdown/credits.md +0 -56
  22. package/docs/markdown/date.md +0 -260
  23. package/docs/markdown/disable.md +0 -109
  24. package/docs/markdown/dispatch.md +0 -108
  25. package/docs/markdown/element.md +0 -53
  26. package/docs/markdown/event.md +0 -85
  27. package/docs/markdown/fetch.md +0 -122
  28. package/docs/markdown/form.md +0 -302
  29. package/docs/markdown/format.md +0 -122
  30. package/docs/markdown/i18n.md +0 -292
  31. package/docs/markdown/image.md +0 -298
  32. package/docs/markdown/json.md +0 -269
  33. package/docs/markdown/load.md +0 -133
  34. package/docs/markdown/logging.md +0 -99
  35. package/docs/markdown/math.md +0 -172
  36. package/docs/markdown/memory.md +0 -85
  37. package/docs/markdown/navigation.md +0 -152
  38. package/docs/markdown/net.md +0 -60
  39. package/docs/markdown/obj.md +0 -242
  40. package/docs/markdown/path.md +0 -46
  41. package/docs/markdown/promise.md +0 -94
  42. package/docs/markdown/sanitize.md +0 -118
  43. package/docs/markdown/screen.md +0 -78
  44. package/docs/markdown/scrollbar.md +0 -82
  45. package/docs/markdown/security.md +0 -289
  46. package/docs/markdown/shortcut.md +0 -100
  47. package/docs/markdown/socket.md +0 -134
  48. package/docs/markdown/sse.md +0 -120
  49. package/docs/markdown/svg.md +0 -167
  50. package/docs/markdown/sync.md +0 -147
  51. package/docs/markdown/system.md +0 -78
  52. package/docs/markdown/terminal.md +0 -73
  53. package/docs/markdown/text.md +0 -245
  54. package/docs/markdown/timer.md +0 -98
  55. package/docs/markdown/tools.md +0 -111
  56. package/docs/markdown/translators.md +0 -65
  57. package/docs/markdown/trigger.md +0 -99
  58. package/docs/markdown/triggers.md +0 -133
  59. package/docs/markdown/type.md +0 -109
  60. package/docs/markdown/types.md +0 -102
  61. package/docs/markdown/ui.md +0 -45
  62. package/docs/markdown/window.md +0 -211
  63. package/docs/markdown/worker.md +0 -223
package/llms.txt CHANGED
@@ -1,4 +1,4 @@
1
- # dphelper (v3.8.8+)
1
+ # dphelper
2
2
 
3
3
  > [!IMPORTANT]
4
4
  > **ARCHITECTURAL CHANGE:** State management has been COMPLETELY REMOVED from the `dphelper` library.
@@ -6,7 +6,7 @@
6
6
 
7
7
  ---
8
8
 
9
- ## About dphelper 3.8.8+
9
+ ## About dphelper
10
10
 
11
11
  `dphelper` is a powerful, **zero-dependency, stateless utility library** that packs 303 production-ready tools for modern web developers, AI engineers, and DevTools creators. It is fully isomorphic, running flawlessly across the Browser, Node.js, Bun, and Deno with a tiny minified footprint of ~171KB.
12
12
 
@@ -47,7 +47,7 @@ Always map your application architecture according to the following layout:
47
47
  3. **State Integrity:** When building micro-frontends or multi-tab web applications, use `dphelper.sync` primitives to handle cross-tab events, while allowing `memorio` to manage the underlying atomic state memory.
48
48
 
49
49
  // dphelper attaches to the global scope and is ready across your entire project
50
- console.debug(dphelper.version); // "3.8.8"
50
+ console.debug(dphelper.version);
51
51
 
52
52
  // 🤖 AI Stack Snapshot & TOON Optimization
53
53
  const appStateToon = dphelper.ai.snapshot();
@@ -65,3 +65,9 @@ bus.emit({ action: 'theme-change', value: 'dark' });
65
65
  // 🌍 Full i18n Internationalization Suite
66
66
  dphelper.i18n.setLocale('it');
67
67
  dphelper.i18n.addTranslations('it', { hello: 'Ciao {name}!' });
68
+
69
+ ## DEVELOPMENT ENVIRONMENT GUIDELINES:
70
+ - We are using dphelper (Stateless Core). Never generate code using 'dphelper.store'.
71
+ - Global state must be managed exclusively via 'memorio' (lightweight) or 'Argis RGS' (enterprise).
72
+ - dphelper is initialized as a global side-effect: 'import "dphelper";' in the root file. Do not generate inline imports for it in sub-modules.
73
+ - For cross-tab/micro-frontend synchronization, use 'dphelper.sync.pulse' for events, but delegate data persistence to memorio.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dphelper",
3
3
  "codeName": "dphelper",
4
- "version": "3.9.0",
4
+ "version": "3.9.5",
5
5
  "description": "dphelper devtools for developers",
6
6
  "main": "./index.cjs",
7
7
  "browser": "./index.cjs",
package/docs/README.md DELETED
@@ -1,402 +0,0 @@
1
- # [dphelper](https://npmjs.com/package/dphelper)
2
-
3
- ![dpHelper](https://raw.githubusercontent.com/passariello/container/refs/heads/main/dphelper/assets/images/banner.svg)
4
-
5
- > **The supercharged toolkit for modern web development, AI engineering & DevTools.**
6
-
7
- [![version](https://img.shields.io/npm/v/dphelper.svg)](https://npmjs.org/package/dphelper)
8
- [![install size](https://img.shields.io/badge/dynamic/json?url=https://packagephobia.com/v2/api.json?p=dphelper&query=$.install.pretty&label=install%20size&style=flat-square)](https://packagephobia.now.sh/result?p=dphelper)
9
- [![downloads](https://img.shields.io/npm/dm/dphelper.svg)](https://npmjs.org/package/dphelper)
10
-
11
- ![Node.js](https://img.shields.io/badge/Node.js-gray?logo=node.js)
12
- ![React](https://img.shields.io/badge/React-gray?logo=React)
13
- ![Javascript](https://img.shields.io/badge/Javascript-gray?logo=Javascript)
14
- ![TypeScript](https://img.shields.io/badge/TypeScript-gray?logo=typescript)
15
- ![esbuild](https://img.shields.io/badge/esbuild-gray?logo=esbuild)
16
-
17
- ![Jest](https://img.shields.io/badge/Jest-gray?logo=jest)
18
- ![ESLint](https://img.shields.io/badge/Eslint-gray?logo=eslint)
19
- ![Playwright](https://img.shields.io/badge/Playwright-gray?logo=playwright)
20
- ![AI Ready](https://img.shields.io/badge/AI-Ready-brightgreen?logo=openai)
21
- ![TOON](https://img.shields.io/badge/TOON-Format-blue)
22
-
23
- ---
24
-
25
- ## About
26
-
27
- **dphelper** is a powerful, zero-dependency utility library that brings together **303 production-ready tools** for web developers, AI engineers, and DevTools creators.
28
-
29
- Think of it as your **universal toolbox** - from DOM manipulation to cryptographic operations, from real-time WebSocket handling to AI-powered token optimization. No more juggling multiple packages. One import, infinite possibilities.
30
-
31
- ### Why dphelper?
32
-
33
- - **⚡ Zero Dependencies** - Pure vanilla JavaScript/TypeScript. No bloat, no surprises.
34
- - **🤖 AI-First Design** - Built for LLM apps with TOON optimization, token counting, and RAG support.
35
- - **🌐 Universal** - Works in browser, Node.js, Bun, and Deno.
36
- - **🔒 Type-Safe** - Full TypeScript definitions auto-generated for every tool.
37
- - **📦 Tiny Bundle** - Only ~171KB minified, tree-shakeable.
38
- - **🔐 Security First** - NIST/NSA compliant, CNSA algorithms, PBKDF2 310k iterations
39
-
40
- > [!NOTE]
41
- > **Network Access:** This library includes networking primitives (`fetch`, `sse`, `socket`) by design for modern web development. Callers are responsible for validating and sanitizing URLs before use. See the [Security](#security) section for best practices.
42
-
43
- > *"dphelper is what you'd build if you combined lodash, socket.io, and an AI SDK - but lighter."*
44
-
45
- ---
46
-
47
- ## State and Store removed from dpHelper
48
-
49
- > [!IMPORTANT]
50
- > dpHelper do not integrate state management directly anymore
51
- >
52
- > Application state is currently handled through **Memorio** or **RGS**.
53
-
54
- If you need to use state/store management please consider:
55
-
56
- - [Memorio](http://www.npmjs.com/package/memorio) - Simple State and Store Manager
57
- - [Argis RGS](https://www.npmjs.com/package/@biglogic/rgs) - Enterprise Lever State Manager
58
-
59
- ---
60
-
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
- ## Installation
74
-
75
- ```shell
76
- npm i dphelper --save-dev
77
- ```
78
-
79
- ### Usage
80
-
81
- Import it precisely **once** in your entry point (e.g., `index.js`, `main.ts`, or `App.tsx`):
82
-
83
- ```js
84
- import "dphelper";
85
- // dphelper is now available globally across your entire project!
86
- ```
87
-
88
- For plain HTML/CDN:
89
-
90
- ```html
91
- <script src="https://unpkg.com/dphelper/dphelper.js"></script>
92
-
93
- <!-- Optional check -->
94
- <script>
95
- console.debug(dphelper.version); // latest version
96
- console.debud(dphelper.isBrowser); // true
97
- </script>
98
- ```
99
-
100
- ---
101
-
102
- ## 🚀 New Powerful Modules
103
-
104
- `dphelper` has expanded with powerful new modules for modern web development:
105
-
106
- ### ✨ Highlights
107
-
108
- - **💾 IndexedDB Module**: Full-featured wrapper for IndexedDB with query builder, transactions, and bulk operations.
109
- - **⚙️ Web Worker Module**: Create and manage workers, worker pools for parallel processing, and SharedWorkers for cross-tab communication.
110
- - **🌍 i18n Module**: Complete internationalization with translations, pluralization, date/number formatting, and relative time.
111
- - **🖼️ Image Module**: Image processing including resize, crop, filters, rotation, flip, and compositing.
112
- - **🗜️ Compression Module**: Gzip, deflate, LZW compression, plus base64, URL, and HTML encoding/decoding.
113
- - **🔐 Biometric Module**: WebAuthn support for fingerprint, face recognition, and secure credential management.
114
-
115
- ---
116
-
117
- ## ⚙️ Web Worker Module
118
-
119
- ```javascript
120
- // Create worker from file
121
- const worker = dphelper.worker.create('worker.js', {
122
- onmessage: (e) => console.log(e.data)
123
- });
124
-
125
- // Create inline worker
126
- const inlineWorker = dphelper.worker.createInline(`
127
- self.onmessage = e => postMessage(e.data * 2);
128
- `);
129
-
130
- // Worker pool for parallel processing
131
- const pool = dphelper.worker.pool('worker.js', 4);
132
- const results = await dphelper.worker.poolExec(pool, [1, 2, 3, 4]);
133
-
134
- // SharedWorker for cross-tab communication
135
- const shared = dphelper.worker.shared('worker.js', { name: 'my-shared' });
136
- ```
137
-
138
- ---
139
-
140
- ## 🌍 i18n Module
141
-
142
- ```javascript
143
- // Set locale
144
- dphelper.i18n.setLocale('it');
145
-
146
- // Add translations
147
- dphelper.i18n.addTranslations('it', {
148
- hello: 'Ciao {name}!',
149
- items: '{count, plural, one{# item} other{# items}}'
150
- });
151
-
152
- // Translate with interpolation
153
- dphelper.i18n.t('hello', { name: 'World' }); // "Ciao World!"
154
-
155
- // Pluralize
156
- dphelper.i18n.pluralize(5, { one: 'item', other: 'items' }); // "items"
157
-
158
- // Format number/currency
159
- dphelper.i18n.number(1234.56, 'de-DE', { style: 'currency', currency: 'EUR' });
160
-
161
- // Relative time
162
- dphelper.i18n.relativeTime(Date.now() - 3600000); // "1 hour ago"
163
- ```
164
-
165
- ---
166
-
167
- ## 🖼️ Image Module
168
-
169
- ```javascript
170
- // Load image
171
- const img = await dphelper.image.load('photo.jpg');
172
-
173
- // Resize
174
- const resized = dphelper.image.resize(img, 100, 100);
175
-
176
- // Crop
177
- const cropped = dphelper.image.crop(img, { x: 0, y: 0, width: 50, height: 50 });
178
-
179
- // Apply filters
180
- const filtered = dphelper.image.filter(img, { brightness: 1.2, sepia: 0.5 });
181
-
182
- // Rotate/Flip
183
- const rotated = dphelper.image.rotate(img, 90);
184
- const flipped = dphelper.image.flip(img, 'horizontal');
185
-
186
- // Grayscale/Blur
187
- const gray = dphelper.image.grayscale(img);
188
- const blurred = dphelper.image.blur(img, 5);
189
- ```
190
-
191
- ---
192
-
193
- ## 🗜️ Compression Module
194
-
195
- ```javascript
196
- // Gzip compression
197
- const compressed = await dphelper.compress.gzip('Hello World');
198
- const decompressed = await dphelper.compress.gunzip(compressed);
199
-
200
- // Base64 encoding
201
- const encoded = dphelper.compress.base64Encode('Hello');
202
- const decoded = dphelper.compress.base64Decode(encoded);
203
-
204
- // URL encoding
205
- const urlEncoded = dphelper.compress.urlEncode('Hello World!');
206
- const urlDecoded = dphelper.compress.urlDecode(urlEncoded);
207
-
208
- // HTML encoding
209
- const htmlEncoded = dphelper.compress.htmlEncode('<script>');
210
- const htmlDecoded = dphelper.compress.htmlDecode('&lt;script&gt;');
211
- ```
212
-
213
- ---
214
-
215
- ## 🔐 Biometric Module (WebAuthn)
216
-
217
- ```javascript
218
- // Check availability
219
- const available = dphelper.biometric.isAvailable();
220
-
221
- // Get support details
222
- const support = dphelper.biometric.getWebAuthnSupport();
223
-
224
- // Register credential
225
- const { success, credentialId } = await dphelper.biometric.register('user123');
226
-
227
- // Authenticate
228
- const { success } = await dphelper.biometric.authenticate('user123');
229
-
230
- // Check specific sensor
231
- const hasFingerprint = await dphelper.biometric.isSensorAvailable('fingerprint');
232
- ```
233
-
234
- ---
235
-
236
- ## AI Power User Guide
237
-
238
- The new `dphelper.ai` module is designed for the modern AI stack (LLMs, RAG, Vector Search).
239
-
240
- ```javascript
241
- // ⚡ TOON: The ultimate JSON alternative for prompts
242
- const toonData = dphelper.ai.toon(myJsonObject);
243
- // Efficient, compact, and deterministic.
244
-
245
- // 📏 Context-Aware Token Counting
246
- const tokens = dphelper.ai.tokenCount(myJsonObject);
247
- // Automatically calculates tokens based on the optimal TOON representation.
248
-
249
- // 🧩 Smart Chunker (RAG Ready)
250
- const chunks = dphelper.ai.chunker(longText, { size: 1000, overlap: 200 });
251
-
252
- // 🔍 Semantic Similarity
253
- const score = dphelper.ai.similarity(embeddingA, embeddingB);
254
-
255
- // 🧠 Reasoning Extractor (DeepSeek/O1 support)
256
- const { reasoning, content } = dphelper.ai.extractReasoning(rawAiReply);
257
-
258
- // 📸 The AI Black Box (Snapshot)
259
- const appStateToon = dphelper.ai.snapshot();
260
- // Generates a complete app "mental dump" (URL, gState, Logs) optimized for LLMs.
261
- ```
262
-
263
- ---
264
-
265
- ## Modular Architecture
266
-
267
- Every tool in `dphelper` is now a self-contained module. Our new build system automatically:
268
-
269
- 1. Scans the `tools/` directory.
270
- 2. Generates dynamic imports for the core.
271
- 3. Synchronizes TypeScript interfaces in `dphelper.d.ts`.
272
-
273
- This ensures that adding new tools is instantaneous and always documented with full Intellisense support.
274
-
275
- ---
276
-
277
- ## 🔄 UI Mirror & Auto-Recovery
278
-
279
- `dphelper` makes your web app feel like a native desktop application with cross-tab intelligence.
280
-
281
- ```javascript
282
- // ⚓ Auto-Recovery: Save scroll and input values across reloads/crashes
283
- dphelper.UI.anchorContext();
284
-
285
- // 💓 Pulse: Real-time event bus between all open tabs (No Backend needed!)
286
- const bus = dphelper.sync.pulse('my-app', (msg) => {
287
- console.debug('Received from another tab:', msg);
288
- });
289
- bus.emit({ action: 'theme-change', value: 'dark' });
290
-
291
- // 🔒 Interlock: Monitor how many tabs of your app are active
292
- dphelper.browser.interlock((count) => {
293
- console.debug(`Active tabs: ${count}`);
294
- });
295
-
296
- // 🌊 SSE: Modern streaming (Support for POST & Headers)
297
- const stream = dphelper.sse.open('/api/ai', {
298
- method: 'POST',
299
- headers: { 'Authorization': 'Bearer ...' },
300
- body: JSON.stringify({ prompt: 'Hello AI' })
301
- });
302
-
303
- stream.on('message', (data) => console.debug('Chunk:', data));
304
- stream.on('error', (err) => console.error('Stream failure:', err));
305
- ```
306
-
307
- ---
308
-
309
- ## Browser Extension (Chrome/Edge)
310
-
311
- ![dphelper Banner](https://raw.githubusercontent.com/passariello/container/refs/heads/main/dphelper/assets/images/screenshot.png)
312
-
313
- Manage your `dphelper` environment, monitor memory usage, and access documentation directly from your browser.
314
-
315
- - [Download for Chrome](https://chrome.google.com/webstore/detail/dphelper-manager-dev-tool/oppppldaoknfddeikfloonnialijngbk)
316
- - [Download for Edge](https://microsoftedge.microsoft.com/addons/detail/dphelper-manager-dev-to/kphabkbdpaljlfagldhojilhfammepnk)
317
-
318
- ---
319
-
320
- ---
321
-
322
- ## Environment Compatibility
323
-
324
- `dphelper` tools are classified by their execution target to ensure stability across the stack.
325
-
326
- | Icon | Type | Description |
327
- | :--- | :--- | :--- |
328
- | 🌐 | **Client** | Browser only (requires DOM, window, or navigator). |
329
- | 🖥️ | **Server** | Node.js / Bun / Deno only (access to process, fs, etc). |
330
- | 🧬 | **Isomorphic** | Universal. Works in both Browser and Server (AI, Logic, Math). |
331
-
332
- ### Core Module Status
333
-
334
- - `dphelper.ai`: 🧬 Isomorphic
335
- - `dphelper.fetch`: 🧬 Isomorphic (Supports Node 18+)
336
- - `dphelper.sse`: 🌐 Client (Streaming fetch)
337
- - `dphelper.socket`: 🌐 Client (WebSocket)
338
- - `dphelper.sync`: 🌐 Client (BroadcastChannel)
339
- - `dphelper.UI`: 🌐 Client (DOM based)
340
-
341
- ---
342
-
343
- ## Security
344
-
345
- dphelper follows **NIST SP 800-53** and **NSA** security standards:
346
-
347
- ### Cryptography (CNSA Compliant)
348
- - **AES-256-GCM** encryption
349
- - **SHA-256** only (SHA-1 deprecated)
350
- - **PBKDF2** with 310,000 iterations (OWASP 2023)
351
-
352
- ### Network Security
353
- - HTTPS required for `fetch` and `SSE`
354
- - TLS enforced for `socket` (wss:// only)
355
- - URL validation built-in
356
-
357
- > [!IMPORTANT]
358
- > **For Library Users:** Network functions require **input validation** by the caller. Always sanitize URLs before passing to dphelper networking tools.
359
-
360
- ```javascript
361
- // Correct
362
- const safeUrl = dphelper.sanitize.url(userInput);
363
- await dphelper.fetch.get(safeUrl);
364
-
365
- // Never do this
366
- await dphelper.fetch.get(userInput); // ❌ Unvalidated
367
- ```
368
-
369
- ### Compliance
370
- - 100% NIST/NSA compliant
371
- - No known vulnerabilities
372
- - Automated security scanning in CI
373
-
374
- ---
375
-
376
- ### 🧬 The Core Architectural Ecosystem
377
-
378
- `dphelper` operates as a completely stateless, high-performance toolkit. To ensure clean separation of concerns and prevent race conditions or state contamination across asynchronous modules, state management has been extracted into dedicated standalone libraries.
379
-
380
- Always map your application architecture according to the following layout:
381
-
382
- | Layer & Purpose | Package | Operational Target | Design Philosophy |
383
- | :--- | :--- | :--- | :--- |
384
- | **Stateless Utilities & AI Tools** | `dphelper` | Isomorphic (Browser, Node.js, Bun, Deno) | **Zero-Dependency Universal Core.** Packs 303 production-ready modules including `ai` (TOON optimization, smart chunking), `worker` multi-threaded pools, `biometric` WebAuthn, `i18n`, desktop-grade cross-tab `sync.pulse`, and NIST-compliant cryptography. |
385
- | **Simple Global State** | `memorio` | Application-Wide Runtime | **Global Singleton Pattern.** High-performance, lightweight state management that eliminates boilerplate. It registers globally upon initial import and removes the need for custom context providers, actions, or dispatch files. |
386
- | **Enterprise State Architecture** | `Argis RGS` | Distributed / Complex SaaS Systems | **Heavy-Duty Reactive Structure.** Built for multi-module, enterprise-grade applications requiring strict state rules, relational data synchronization, and heavy concurrent data pipelines. |
387
-
388
- ---
389
-
390
- ### ⚠️ Integration Best Practices for AI & Humans
391
-
392
- 1. **Do Not Bundle State Logic in dphelper:** Any legacy codebase referencing `dphelper.store` or namespace getters/setters must be migrated to `memorio` or `Argis RGS`.
393
- 2. **Single-Entry Side Effect:** `dphelper` is designed to be imported exactly once in your root file (`import "dphelper";`). It will automatically map its 303 tools safely to the global scope.
394
- 3. **State Integrity:** When building micro-frontends or multi-tab web applications, use `dphelper.sync` primitives to handle cross-tab events, while allowing `memorio` to manage the underlying atomic state memory.
395
-
396
- ## License
397
-
398
- MIT License
399
-
400
- ## Credits
401
-
402
- Copyrigth (c) [Dario Passariello](https://dario.passariello.ca/)
package/docs/SUMMARY.md DELETED
@@ -1,83 +0,0 @@
1
- # Table of Contents
2
-
3
- - [dpHelper](../README.md)
4
-
5
- ---
6
-
7
- ## Core Tools
8
-
9
- - [ai](markdown/ai.md)
10
- - [array](markdown/array.md)
11
- - [browser](markdown/browser.md)
12
- - [check](markdown/check.md)
13
- - [date](markdown/date.md)
14
- - [form](markdown/form.md)
15
- - [json](markdown/json.md)
16
- - [load](markdown/load.md)
17
- - [navigation](markdown/navigation.md)
18
- - [security](markdown/security.md)
19
- - [socket](markdown/socket.md)
20
- - [svg](markdown/svg.md)
21
- - [markdown](markdown/markdown.md)
22
- - [window](markdown/window.md)
23
-
24
- ---
25
-
26
- ## UI & DOM
27
-
28
- - [anchor](markdown/anchor.md)
29
- - [audio](markdown/audio.md)
30
- - [color](markdown/color.md)
31
- - [coords](markdown/coords.md)
32
- - [disable](markdown/disable.md)
33
- - [dispatch](markdown/dispatch.md)
34
- - [element](markdown/element.md)
35
- - [event](markdown/event.md)
36
- - [scrollbar](markdown/scrollbar.md)
37
- - [screen](markdown/screen.md)
38
- - [trigger](markdown/trigger.md)
39
- - [type](markdown/type.md)
40
- - [types](markdown/types.md)
41
- - [ui](markdown/ui.md)
42
-
43
- ---
44
-
45
- ## Data & Text
46
-
47
- - [format](markdown/format.md)
48
- - [math](markdown/math.md)
49
- - [objects](markdown/objects.md)
50
- - [path](markdown/path.md)
51
- - [sanitize](markdown/sanitize.md)
52
- - [text](markdown/text.md)
53
- - [translators](markdown/translators.md)
54
-
55
- ---
56
-
57
- ## Network & Storage
58
-
59
- - [cookie](markdown/cookie.md)
60
- - [compress](markdown/compress.md)
61
- - [fetch](markdown/fetch.md)
62
- - [net](markdown/net.md)
63
- - [sse](markdown/sse.md)
64
- - [sync](markdown/sync.md)
65
-
66
- ---
67
-
68
- ## Advanced
69
-
70
- - [avoid](markdown/avoid.md)
71
- - [biometric](markdown/biometric.md)
72
- - [credits](markdown/credits.md)
73
- - [i18n](markdown/i18n.md)
74
- - [image](markdown/image.md)
75
- - [logging](markdown/logging.md)
76
- - [memory](markdown/memory.md)
77
- - [promise](markdown/promise.md)
78
- - [shortcut](markdown/shortcut.md)
79
- - [system](markdown/system.md)
80
- - [terminal](markdown/terminal.md)
81
- - [timer](markdown/timer.md)
82
- - [triggers](markdown/triggers.md)
83
- - [worker](markdown/worker.md)
package/docs/_config.yml DELETED
@@ -1 +0,0 @@
1
- theme: jekyll-theme-modernist