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.
Files changed (3) hide show
  1. package/README.md +5 -5
  2. package/index.js +1 -1
  3. 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
- - [ ] `getStaticParams`, `getStaticProps`
88
- - [ ] Client Side Rendering (CSR) via WebAssembly (_WIP_)
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
- - [ ] Middleware (_cancalled_)
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
- - [ ] Context (configurable)
130
+ - [x] Context (configurable)
131
131
  - [x] App
132
132
  - [x] Layout
133
133
  - [x] Page
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  // src/index.ts
2
2
  var zx = {
3
3
  name: "zx",
4
- version: "0.1.0-dev.589",
4
+ version: "0.1.0-dev.598",
5
5
  description: "ZX is a framework for building web applications with Zig.",
6
6
  repository: "https://github.com/nurulhudaapon/zx",
7
7
  fingerprint: 14616285862371232000,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ziex",
3
- "version": "0.1.0-dev.589",
3
+ "version": "0.1.0-dev.598",
4
4
  "description": "ZX is a framework for building web applications with Zig.",
5
5
  "main": "index.js",
6
6
  "type": "module",