@ktjs/core 0.31.2 → 0.31.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.
- package/README.md +9 -0
- package/dist/index.d.ts +411 -385
- package/dist/index.mjs +30 -76
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,3 +24,12 @@
|
|
|
24
24
|
kt.js is a simple framework with a tiny runtime that renders real DOM directly (no virtual DOM), uses explicit reactivity variables and gives you manual control over refs, bindings, and redraw timing.
|
|
25
25
|
|
|
26
26
|
KT.js focuses on one principle: keep direct control of the DOM and avoid unnecessary repainting.
|
|
27
|
+
|
|
28
|
+
## Quick Start
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pnpm create kt.js my-app
|
|
32
|
+
cd my-app
|
|
33
|
+
pnpm install
|
|
34
|
+
pnpm dev
|
|
35
|
+
```
|