@mulanjs/mulanjs 1.0.1-dev.20260218164416 → 1.0.1-dev.20260218165325
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 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,19 +15,22 @@ MulanJS is a high-performance, next-generation web framework designed to bridge
|
|
|
15
15
|
### Stable Release
|
|
16
16
|
> Coming soon!
|
|
17
17
|
|
|
18
|
-
### Development Release (
|
|
19
|
-
To install the latest development version of MulanJS (e.g., `1.0.1-dev.20260218163106`):
|
|
18
|
+
### 🚧 Development Release (Bleeding Edge)
|
|
20
19
|
|
|
20
|
+
Want to try the latest features before they are stable? Use the development build.
|
|
21
|
+
|
|
22
|
+
**Option A: Create a New Project (Recommended)**
|
|
21
23
|
```bash
|
|
22
|
-
|
|
24
|
+
npx @mulanjs/mulanjs@dev init my-project
|
|
23
25
|
```
|
|
24
26
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
+
**Option B: Install in Existing Project**
|
|
27
28
|
```bash
|
|
28
|
-
|
|
29
|
+
npm install @mulanjs/mulanjs@dev
|
|
29
30
|
```
|
|
30
31
|
|
|
32
|
+
*Note: The dev version is updated frequently. You can check the latest version number by running `npm view @mulanjs/mulanjs dist-tags.dev`.*
|
|
33
|
+
|
|
31
34
|
## ⚡ Core Features
|
|
32
35
|
|
|
33
36
|
- **Signal Reactivity Engine**: Fine-grained reactivity that tracks exact dependencies, eliminating the need for a Virtual DOM.
|
package/package.json
CHANGED