ziex 0.1.0-dev.589 → 0.1.0-dev.598
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 +5 -5
- package/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,11 +81,10 @@ const zx = @import("zx");
|
|
|
81
81
|
## Feature Checklist
|
|
82
82
|
|
|
83
83
|
- [x] Server Side Rendering (SSR)
|
|
84
|
-
- [ ] `on`event handler
|
|
85
84
|
- [x] Streaming
|
|
86
85
|
- [x] Static Site Generation (SSG)
|
|
87
|
-
- [
|
|
88
|
-
- [ ] Client Side Rendering (CSR) via WebAssembly (
|
|
86
|
+
- [x] `options.static.params`, `options.static.getParams`
|
|
87
|
+
- [ ] Client Side Rendering (CSR) via WebAssembly (_Alpha_)
|
|
89
88
|
- [x] Virtual DOM and diffing
|
|
90
89
|
- [x] Rendering only changed nodes
|
|
91
90
|
- [x] `on`event handler
|
|
@@ -93,6 +92,7 @@ const zx = @import("zx");
|
|
|
93
92
|
- [x] Hydration
|
|
94
93
|
- [ ] Lifecycle hook
|
|
95
94
|
- [ ] Server Actions
|
|
95
|
+
- [ ] Rendering performance
|
|
96
96
|
- [x] Client Side Rendering (CSR) via React
|
|
97
97
|
- [x] Routing
|
|
98
98
|
- [x] File-system Routing
|
|
@@ -115,7 +115,7 @@ const zx = @import("zx");
|
|
|
115
115
|
- [x] CSS (via plugins such as Tailwind)
|
|
116
116
|
- [x] JS/TS (via esbuild)
|
|
117
117
|
- [x] HTML (optimized by default)
|
|
118
|
-
- [
|
|
118
|
+
- [x] Proxy/Middleware
|
|
119
119
|
- [ ] Caching (configurable)
|
|
120
120
|
- [x] Component
|
|
121
121
|
- [ ] Layout
|
|
@@ -127,7 +127,7 @@ const zx = @import("zx");
|
|
|
127
127
|
- [x] Builtin TailwindCSS and Esbuild
|
|
128
128
|
- [x] Command based plugin system
|
|
129
129
|
- [ ] Source based plugin system
|
|
130
|
-
- [
|
|
130
|
+
- [x] Context (configurable)
|
|
131
131
|
- [x] App
|
|
132
132
|
- [x] Layout
|
|
133
133
|
- [x] Page
|
package/index.js
CHANGED