eleva 1.2.3-alpha → 1.2.4-alpha
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 +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# eleva.js 🚀
|
|
2
2
|
|
|
3
3
|
Pure JavaScript, Pure Performance, Simply Elegant.
|
|
4
4
|
|
|
@@ -16,11 +16,11 @@ Pure JavaScript, Pure Performance, Simply Elegant.
|
|
|
16
16
|
<br>
|
|
17
17
|
|
|
18
18
|
<p align="center">
|
|
19
|
-
<a href="https://tarekraafat.github.io/eleva/"><img src="./docs/imgs/
|
|
19
|
+
<a href="https://tarekraafat.github.io/eleva/"><img src="./docs/imgs/eleva.js Full Logo.png" alt="eleva.js Full Logo" width="50%"></a>
|
|
20
20
|
</p>
|
|
21
21
|
|
|
22
22
|
<p align="center">
|
|
23
|
-
<a href="https://www.producthunt.com/posts/eleva?embed=true&utm_source=badge-featured&utm_medium=badge&utm_souce=badge-eleva" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=938663&theme=light&t=1741247713068" alt="
|
|
23
|
+
<a href="https://www.producthunt.com/posts/eleva?embed=true&utm_source=badge-featured&utm_medium=badge&utm_souce=badge-eleva" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=938663&theme=light&t=1741247713068" alt="eleva.js - A minimalist, pure vanilla javascript frontend framework. | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
|
24
24
|
</p>
|
|
25
25
|
|
|
26
26
|
<br>
|
|
@@ -43,7 +43,7 @@ Welcome to Eleva! This is my humble, experimental playground for a fresh approac
|
|
|
43
43
|
|
|
44
44
|
## Table of Contents
|
|
45
45
|
|
|
46
|
-
- [
|
|
46
|
+
- [eleva.js 🚀](#elevajs-)
|
|
47
47
|
- [Table of Contents](#table-of-contents)
|
|
48
48
|
- [Introduction](#introduction)
|
|
49
49
|
- [Design Philosophy](#design-philosophy)
|
|
@@ -182,9 +182,9 @@ Preliminary benchmarks illustrate Eleva's efficiency compared to popular framewo
|
|
|
182
182
|
| **Framework** | **Bundle Size** (KB) | **Initial Load Time** (ms) | **DOM Update Speed** (s) | **Peak Memory Usage** (KB) | **Overall Performance Score** (lower is better) |
|
|
183
183
|
| ----------------------------- | -------------------- | -------------------------- | ------------------------ | -------------------------- | ----------------------------------------------- |
|
|
184
184
|
| **Eleva** (Direct DOM) | **2** | **0.05** | **0.002** | **0.25** | **0.58 (Best)** |
|
|
185
|
-
| **React** (Virtual DOM) |
|
|
186
|
-
| **Vue** (Reactive State) |
|
|
187
|
-
| **Angular** (Two-way Binding) |
|
|
185
|
+
| **React** (Virtual DOM) | 4.1 | 5.34 | 0.020 | 0.25 | 9.71 |
|
|
186
|
+
| **Vue** (Reactive State) | 45 | 4.72 | 0.021 | 3.10 | 13.21 |
|
|
187
|
+
| **Angular** (Two-way Binding) | 62 | 5.26 | 0.021 | 0.25 | 16.88 (Slowest) |
|
|
188
188
|
|
|
189
189
|
Detailed [Benchmark Metrics Report](BENCHMARK.md)
|
|
190
190
|
|