@lunora/astro 1.0.0-alpha.7 → 1.0.0-alpha.71

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/LICENSE.md CHANGED
@@ -103,3 +103,9 @@ Unless required by applicable law or agreed to in writing, software distributed
103
103
  under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
104
104
  CONDITIONS OF ANY KIND, either express or implied. See the License for the
105
105
  specific language governing permissions and limitations under the License.
106
+
107
+ <!-- DEPENDENCIES -->
108
+ <!-- /DEPENDENCIES -->
109
+
110
+ <!-- TYPE_DEPENDENCIES -->
111
+ <!-- /TYPE_DEPENDENCIES -->
package/README.md CHANGED
@@ -98,6 +98,24 @@ const preloaded = await preloadQuery(client, api.messages.list, {});
98
98
  <my-island data-preloaded={serializePreloaded(preloaded)}></my-island>
99
99
  ```
100
100
 
101
+ ### Feature flags
102
+
103
+ `@lunora/astro` ships no flag hook — like every other surface, flags follow the same server/island split. Read `ctx.flags` server-side (a server endpoint, a function, or the same `.astro` frontmatter) and hand the resolved value to the island, or call `useFlag` inside the island itself via the adapter you hydrate with (`@lunora/react`, `@lunora/vue`, …). Requires [`@lunora/flags`](https://www.npmjs.com/package/@lunora/flags) wired in `lunora/flags.ts`.
104
+
105
+ ```astro
106
+ ---
107
+ // src/pages/index.astro — resolve the flag once, server-side
108
+ import { createServerClient, preloadQuery, preloadedQueryResult } from "@lunora/astro/server";
109
+ import { api } from "../lunora/_generated/api";
110
+
111
+ const client = createServerClient({ url: Astro.url.origin + "/_lunora/rpc" });
112
+ const preloaded = await preloadQuery(client, api.homepage.heroFlag, {}); // a query that returns ctx.flags.boolean(...)
113
+ const newHero = preloadedQueryResult(preloaded);
114
+ ---
115
+
116
+ {newHero ? <NewHero client:load /> : <ClassicHero client:load />}
117
+ ```
118
+
101
119
  > This README covers the basics. For the full API, options, and guides, see the **[documentation](https://lunora.sh/docs/frameworks/bring-your-framework)**.
102
120
 
103
121
  ## Related
package/dist/index.d.mts CHANGED
@@ -1,27 +1,12 @@
1
1
  export { type FrameworkHostHandler as AstroWorkerHandler, type LunoraWorker as ComposedWorker, type FrameworkWorkerOptions as LunoraOptions, withFrameworkWorker as withLunora } from '@lunora/runtime';
2
2
  /**
3
- * The Lunora Astro **integration** an `AstroIntegration` object
4
- * (`{ name, hooks }`) added to `astro.config.*`'s `integrations` array.
5
- *
6
- * Astro is multi-framework at the UI layer, so this integration is **not** a new
7
- * reactive runtime. Its job is the *composition* seam (PLAN4 class-B): make the
8
- * Worker `@astrojs/cloudflare` emits mount Lunora realtime under `/_lunora/*`
9
- * via `withLunora`, and surface the framework-neutral server helpers
10
- * (`@lunora/astro/server`) to Astro server endpoints / `.astro` frontmatter.
11
- *
12
- * Reactivity itself comes from whichever island adapter the app hydrates with —
13
- * `@lunora/react`, `@lunora/solid`, `@lunora/svelte`, or `@lunora/vue` — each of
14
- * which ships its own `hydratePreloaded(preloaded)` for the SSR-seed → live
15
- * handoff. This package owns the server/composition half only.
16
- */
17
- /**
18
- * Structural subset of Astro's `AstroIntegration`. Declared locally (rather than
19
- * importing `astro`'s type) so `@lunora/astro`'s public surface stays decoupled
20
- * from a specific Astro major and type-checks even when `astro` is not installed
21
- * — `astro` is an *optional* peer here (only the host Astro app pulls it in).
22
- * The shape is assignable to/from Astro's real `AstroIntegration`, so adding the
23
- * returned object to `integrations` type-checks in a real Astro project.
24
- */
3
+ * Structural subset of Astro's `AstroIntegration`. Declared locally (rather than
4
+ * importing `astro`'s type) so `@lunora/astro`'s public surface stays decoupled
5
+ * from a specific Astro major and type-checks even when `astro` is not installed
6
+ * `astro` is an *optional* peer here (only the host Astro app pulls it in).
7
+ * The shape is assignable to/from Astro's real `AstroIntegration`, so adding the
8
+ * returned object to `integrations` type-checks in a real Astro project.
9
+ */
25
10
  interface AstroIntegrationLike {
26
11
  readonly hooks: {
27
12
  readonly [hook: string]: ((...arguments_: never[]) => unknown) | undefined;
@@ -31,41 +16,44 @@ interface AstroIntegrationLike {
31
16
  /** Options for the `lunora` integration. */
32
17
  interface LunoraIntegrationOptions {
33
18
  /**
34
- * Path (or specifier) of the module that calls `withLunora` and is the
35
- * composed worker's `export default`. Documented for the wiring story; when
36
- * omitted the integration assumes the conventional `src/worker.ts`.
37
- */
19
+ * Path (or specifier) of the module that calls `withLunora` and is the
20
+ * composed worker's `export default`. Documented for the wiring story; when
21
+ * omitted the integration assumes the conventional `src/worker.ts`.
22
+ */
38
23
  readonly serverEntry?: string;
39
24
  }
40
25
  /**
41
- * The Lunora Astro integration. Add it to `astro.config.*`:
42
- *
43
- * ```ts
44
- * import cloudflare from "@astrojs/cloudflare";
45
- * import { defineConfig } from "astro/config";
46
- * import { lunora } from "@lunora/astro";
47
- *
48
- * export default defineConfig({
49
- * output: "server",
50
- * adapter: cloudflare(),
51
- * integrations: [lunora()],
52
- * });
53
- * ```
54
- *
55
- * What it does:
56
- *
57
- * - Marks the build so the `@astrojs/cloudflare` server entry is wrapped with
58
- * `withLunora` the composed worker reserves `/_lunora/*` for Lunora realtime
59
- * and forwards everything else to Astro's SSR handler (one worker, one deploy).
60
- * - Documents the `serverEntry` (default `src/worker.ts`) where the
61
- * `withLunora(astroWorker, { shardDO: env.SHARD, })` composition lives.
62
- *
63
- * The hook is intentionally minimal here: the load-bearing composition is the
64
- * `withLunora` wrapper at the server-entry boundary (see `withLunora` for the
65
- * `@astrojs/cloudflare` injection point). The integration object exists so the
66
- * wiring is declared in `astro.config` the idiomatic Astro way, and so future
67
- * build-time hooks (binding reconcile, dev middleware) have a home without
68
- * changing the public surface.
69
- */
26
+ * The Lunora Astro integration. Add it to `astro.config.*`:
27
+ *
28
+ * ```ts
29
+ * import cloudflare from "@astrojs/cloudflare";
30
+ * import { defineConfig } from "astro/config";
31
+ * import { lunora } from "@lunora/astro";
32
+ *
33
+ * export default defineConfig({
34
+ * output: "server",
35
+ * adapter: cloudflare(),
36
+ * integrations: [lunora()],
37
+ * });
38
+ * ```
39
+ *
40
+ * What it does:
41
+ *
42
+ * - Documents the `serverEntry` (default `src/worker.ts`) where the
43
+ * `withLunora(astroWorker, { shardDO: env.SHARD, })` composition lives.
44
+ * - Checks, at `astro:config:done`, that `serverEntry` exists and contains an
45
+ * actual `withLunora(...)` CALL (not merely an import of it) and warns
46
+ * (does not fail the build) when it doesn't, so a missing wrapper is caught
47
+ * at build time instead of shipping a worker where `/_lunora/*` is unrouted
48
+ * and realtime silently 404s.
49
+ *
50
+ * This integration does NOT wrap the server entry itself — no file is written
51
+ * or modified. The load-bearing composition is the `withLunora` call the
52
+ * project author writes at the server-entry boundary (see `withLunora` for the
53
+ * `@astrojs/cloudflare` injection point); this object exists so the wiring is
54
+ * declared in `astro.config` the idiomatic Astro way, checked once at build
55
+ * time, and has a home for future build-time hooks (binding reconcile, dev
56
+ * middleware) without changing the public surface.
57
+ */
70
58
  declare const lunora: (options?: LunoraIntegrationOptions) => AstroIntegrationLike;
71
59
  export { type AstroIntegrationLike, type LunoraIntegrationOptions, lunora };
package/dist/index.d.ts CHANGED
@@ -1,27 +1,12 @@
1
1
  export { type FrameworkHostHandler as AstroWorkerHandler, type LunoraWorker as ComposedWorker, type FrameworkWorkerOptions as LunoraOptions, withFrameworkWorker as withLunora } from '@lunora/runtime';
2
2
  /**
3
- * The Lunora Astro **integration** an `AstroIntegration` object
4
- * (`{ name, hooks }`) added to `astro.config.*`'s `integrations` array.
5
- *
6
- * Astro is multi-framework at the UI layer, so this integration is **not** a new
7
- * reactive runtime. Its job is the *composition* seam (PLAN4 class-B): make the
8
- * Worker `@astrojs/cloudflare` emits mount Lunora realtime under `/_lunora/*`
9
- * via `withLunora`, and surface the framework-neutral server helpers
10
- * (`@lunora/astro/server`) to Astro server endpoints / `.astro` frontmatter.
11
- *
12
- * Reactivity itself comes from whichever island adapter the app hydrates with —
13
- * `@lunora/react`, `@lunora/solid`, `@lunora/svelte`, or `@lunora/vue` — each of
14
- * which ships its own `hydratePreloaded(preloaded)` for the SSR-seed → live
15
- * handoff. This package owns the server/composition half only.
16
- */
17
- /**
18
- * Structural subset of Astro's `AstroIntegration`. Declared locally (rather than
19
- * importing `astro`'s type) so `@lunora/astro`'s public surface stays decoupled
20
- * from a specific Astro major and type-checks even when `astro` is not installed
21
- * — `astro` is an *optional* peer here (only the host Astro app pulls it in).
22
- * The shape is assignable to/from Astro's real `AstroIntegration`, so adding the
23
- * returned object to `integrations` type-checks in a real Astro project.
24
- */
3
+ * Structural subset of Astro's `AstroIntegration`. Declared locally (rather than
4
+ * importing `astro`'s type) so `@lunora/astro`'s public surface stays decoupled
5
+ * from a specific Astro major and type-checks even when `astro` is not installed
6
+ * `astro` is an *optional* peer here (only the host Astro app pulls it in).
7
+ * The shape is assignable to/from Astro's real `AstroIntegration`, so adding the
8
+ * returned object to `integrations` type-checks in a real Astro project.
9
+ */
25
10
  interface AstroIntegrationLike {
26
11
  readonly hooks: {
27
12
  readonly [hook: string]: ((...arguments_: never[]) => unknown) | undefined;
@@ -31,41 +16,44 @@ interface AstroIntegrationLike {
31
16
  /** Options for the `lunora` integration. */
32
17
  interface LunoraIntegrationOptions {
33
18
  /**
34
- * Path (or specifier) of the module that calls `withLunora` and is the
35
- * composed worker's `export default`. Documented for the wiring story; when
36
- * omitted the integration assumes the conventional `src/worker.ts`.
37
- */
19
+ * Path (or specifier) of the module that calls `withLunora` and is the
20
+ * composed worker's `export default`. Documented for the wiring story; when
21
+ * omitted the integration assumes the conventional `src/worker.ts`.
22
+ */
38
23
  readonly serverEntry?: string;
39
24
  }
40
25
  /**
41
- * The Lunora Astro integration. Add it to `astro.config.*`:
42
- *
43
- * ```ts
44
- * import cloudflare from "@astrojs/cloudflare";
45
- * import { defineConfig } from "astro/config";
46
- * import { lunora } from "@lunora/astro";
47
- *
48
- * export default defineConfig({
49
- * output: "server",
50
- * adapter: cloudflare(),
51
- * integrations: [lunora()],
52
- * });
53
- * ```
54
- *
55
- * What it does:
56
- *
57
- * - Marks the build so the `@astrojs/cloudflare` server entry is wrapped with
58
- * `withLunora` the composed worker reserves `/_lunora/*` for Lunora realtime
59
- * and forwards everything else to Astro's SSR handler (one worker, one deploy).
60
- * - Documents the `serverEntry` (default `src/worker.ts`) where the
61
- * `withLunora(astroWorker, { shardDO: env.SHARD, })` composition lives.
62
- *
63
- * The hook is intentionally minimal here: the load-bearing composition is the
64
- * `withLunora` wrapper at the server-entry boundary (see `withLunora` for the
65
- * `@astrojs/cloudflare` injection point). The integration object exists so the
66
- * wiring is declared in `astro.config` the idiomatic Astro way, and so future
67
- * build-time hooks (binding reconcile, dev middleware) have a home without
68
- * changing the public surface.
69
- */
26
+ * The Lunora Astro integration. Add it to `astro.config.*`:
27
+ *
28
+ * ```ts
29
+ * import cloudflare from "@astrojs/cloudflare";
30
+ * import { defineConfig } from "astro/config";
31
+ * import { lunora } from "@lunora/astro";
32
+ *
33
+ * export default defineConfig({
34
+ * output: "server",
35
+ * adapter: cloudflare(),
36
+ * integrations: [lunora()],
37
+ * });
38
+ * ```
39
+ *
40
+ * What it does:
41
+ *
42
+ * - Documents the `serverEntry` (default `src/worker.ts`) where the
43
+ * `withLunora(astroWorker, { shardDO: env.SHARD, })` composition lives.
44
+ * - Checks, at `astro:config:done`, that `serverEntry` exists and contains an
45
+ * actual `withLunora(...)` CALL (not merely an import of it) and warns
46
+ * (does not fail the build) when it doesn't, so a missing wrapper is caught
47
+ * at build time instead of shipping a worker where `/_lunora/*` is unrouted
48
+ * and realtime silently 404s.
49
+ *
50
+ * This integration does NOT wrap the server entry itself — no file is written
51
+ * or modified. The load-bearing composition is the `withLunora` call the
52
+ * project author writes at the server-entry boundary (see `withLunora` for the
53
+ * `@astrojs/cloudflare` injection point); this object exists so the wiring is
54
+ * declared in `astro.config` the idiomatic Astro way, checked once at build
55
+ * time, and has a home for future build-time hooks (binding reconcile, dev
56
+ * middleware) without changing the public surface.
57
+ */
70
58
  declare const lunora: (options?: LunoraIntegrationOptions) => AstroIntegrationLike;
71
59
  export { type AstroIntegrationLike, type LunoraIntegrationOptions, lunora };
package/dist/index.mjs CHANGED
@@ -1,2 +1 @@
1
- export { lunora } from './packem_shared/lunora-DCkPGEVa.mjs';
2
- export { withFrameworkWorker as withLunora } from '@lunora/runtime';
1
+ import{lunora as a}from"./packem_shared/lunora-DUrBrtb9.mjs";import{withFrameworkWorker as t}from"@lunora/runtime";export{a as lunora,t as withLunora};
@@ -0,0 +1,6 @@
1
+ import{existsSync as h,readFileSync as c}from"node:fs";import{fileURLToPath as w}from"node:url";const i=['import { withLunora } from "@lunora/astro/server";',"","export default withLunora(astroWorker, { shardDO: env.SHARD /* , … */ });"].join(`
2
+ `),d=/\bwithLunora\s*\(/u,m=(u={})=>{const t=(u.serverEntry??"src/worker.ts").trim();return{hooks:{"astro:config:done":(o={})=>{if(t.length===0)throw new TypeError("@lunora/astro: `serverEntry` must be a non-empty path.");const e=o.config?.root;if(e===void 0)return;const n=r=>{o.logger?.warn?o.logger.warn(r):console.warn(r)},a=w(new URL(t,e));if(!h(a)){n(`@lunora/astro: server entry "${t}" not found — add it (or point \`lunora({ serverEntry })\` at the right path) and wrap the Astro worker with \`withLunora\`, or \`/_lunora/*\` (Lunora realtime) will be unrouted:
3
+
4
+ ${i}`);return}let s;try{s=c(a,"utf8")}catch(r){const l=r instanceof Error?r.message:String(r);n(`@lunora/astro: could not read server entry "${t}" (${l}) — skipping the \`withLunora\` check.`);return}d.test(s)||n(`@lunora/astro: couldn't find a \`withLunora(...)\` call in the server entry "${t}" — \`/_lunora/*\` (Lunora realtime) will be unrouted and subscriptions will silently 404. Wrap the Astro worker:
5
+
6
+ ${i}`)}},name:"@lunora/astro"}};export{m as lunora};
package/dist/server.mjs CHANGED
@@ -1 +1 @@
1
- export { createServerClient, deserializePreloaded, getServerSession, preloadQuery, preloadedQueryResult, serializePreloaded } from '@lunora/client/ssr';
1
+ import{createServerClient as d,deserializePreloaded as l,getServerSession as a,preloadQuery as o,preloadedQueryResult as i,serializePreloaded as s}from"@lunora/client/ssr";export{d as createServerClient,l as deserializePreloaded,a as getServerSession,o as preloadQuery,i as preloadedQueryResult,s as serializePreloaded};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunora/astro",
3
- "version": "1.0.0-alpha.7",
3
+ "version": "1.0.0-alpha.71",
4
4
  "description": "Astro integration for Lunora — single-worker composition plus reactive-loader server helpers",
5
5
  "keywords": [
6
6
  "astro",
@@ -50,11 +50,11 @@
50
50
  "access": "public"
51
51
  },
52
52
  "dependencies": {
53
- "@lunora/client": "1.0.0-alpha.3",
54
- "@lunora/runtime": "1.0.0-alpha.6"
53
+ "@lunora/client": "1.0.0-alpha.44",
54
+ "@lunora/runtime": "1.0.0-alpha.58"
55
55
  },
56
56
  "peerDependencies": {
57
- "astro": "^6.0.0"
57
+ "astro": ">=6.0.0"
58
58
  },
59
59
  "peerDependenciesMeta": {
60
60
  "astro": {
@@ -1,15 +0,0 @@
1
- const lunora = (options = {}) => {
2
- const serverEntry = options.serverEntry ?? "src/worker.ts";
3
- return {
4
- hooks: {
5
- "astro:config:done": () => {
6
- if (serverEntry.length === 0) {
7
- throw new Error("@lunora/astro: `serverEntry` must be a non-empty path.");
8
- }
9
- }
10
- },
11
- name: "@lunora/astro"
12
- };
13
- };
14
-
15
- export { lunora };