ziex 0.1.0-dev.562 → 0.1.0-dev.593

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 -4
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -93,6 +93,7 @@ const zx = @import("zx");
93
93
  - [x] Hydration
94
94
  - [ ] Lifecycle hook
95
95
  - [ ] Server Actions
96
+ - [ ] Rendering performance
96
97
  - [x] Client Side Rendering (CSR) via React
97
98
  - [x] Routing
98
99
  - [x] File-system Routing
@@ -115,7 +116,7 @@ const zx = @import("zx");
115
116
  - [x] CSS (via plugins such as Tailwind)
116
117
  - [x] JS/TS (via esbuild)
117
118
  - [x] HTML (optimized by default)
118
- - [ ] Middleware (_cancalled_)
119
+ - [x] Proxy/Middleware
119
120
  - [ ] Caching (configurable)
120
121
  - [x] Component
121
122
  - [ ] Layout
@@ -128,9 +129,9 @@ const zx = @import("zx");
128
129
  - [x] Command based plugin system
129
130
  - [ ] Source based plugin system
130
131
  - [ ] Context (configurable)
131
- - [ ] App
132
- - [ ] Layout
133
- - [ ] Page
132
+ - [x] App
133
+ - [x] Layout
134
+ - [x] Page
134
135
  - [x] Component
135
136
  - [x] `error.zx` for default and per-route error page
136
137
  - [x] `notfound.zx` for default and per-route error 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.562",
4
+ version: "0.1.0-dev.593",
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.562",
3
+ "version": "0.1.0-dev.593",
4
4
  "description": "ZX is a framework for building web applications with Zig.",
5
5
  "main": "index.js",
6
6
  "type": "module",