@vmz/core 0.0.3 → 0.1.0

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.
@@ -1 +1,14 @@
1
+ /**
2
+ * Generic VMZ Node host — SSR file-route pages + dist static + RPC/REST.
3
+ *
4
+ * Invoked by `vmz serve` / `vmz dev` (or: node dist/vmz-serve-host.mjs).
5
+ *
6
+ * Pathname → `pages/**` (PascalCase stem → lowercase URL; `index` → parent;
7
+ * `[Param]` / `[...rest]` dynamic). Not an SPA shell.
8
+ *
9
+ * `VMZ_DEV=1`: POST `/__vmz/reload` soft-reloads modules (cache-bust import);
10
+ * GET `/__vmz/events` SSE notifies the browser:
11
+ * - island HMR → re-import `entry-client.js` (no full document reload)
12
+ * - otherwise → `location.reload`
13
+ */
1
14
  export {};