@absolutejs/absolute 0.19.0-beta.35 → 0.19.0-beta.37

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.
@@ -108,7 +108,7 @@ var worker = null, requestId = 0, pending, getWorker = () => {
108
108
  if (worker)
109
109
  return worker;
110
110
  const workerPath = resolve(import.meta.dir, "ssrWorker.ts");
111
- worker = new Worker(workerPath);
111
+ worker = new Worker(workerPath, { cwd: process.cwd() });
112
112
  worker.onmessage = (event) => {
113
113
  const { id, ok, html, error } = event.data;
114
114
  const req = pending.get(id);
@@ -150,7 +150,7 @@ var init_ssrRenderer = __esm(() => {
150
150
 
151
151
  // src/react/pageHandler.ts
152
152
  var isDev = process.env["NODE_ENV"] === "development";
153
- var resolveComponentPath = (component) => {
153
+ var findComponentPath = (component) => {
154
154
  const name = component.displayName ?? component.name;
155
155
  if (!name)
156
156
  return null;
@@ -161,12 +161,8 @@ var resolveComponentPath = (component) => {
161
161
  const { resolve: resolve2, join } = __require("path");
162
162
  const { existsSync } = __require("fs");
163
163
  const pagesDir = resolve2(reactDir, "pages");
164
- const candidates = [
165
- join(pagesDir, `${name}.tsx`),
166
- join(pagesDir, `${name}.jsx`),
167
- join(pagesDir, `${name}.ts`)
168
- ];
169
- for (const candidate of candidates) {
164
+ for (const ext of [".tsx", ".jsx", ".ts"]) {
165
+ const candidate = join(pagesDir, `${name}${ext}`);
170
166
  if (existsSync(candidate))
171
167
  return candidate;
172
168
  }
@@ -176,17 +172,19 @@ var handleReactPageRequest = async (PageComponent, index, ...props) => {
176
172
  try {
177
173
  const [maybeProps] = props;
178
174
  if (isDev) {
179
- const componentPath = resolveComponentPath(PageComponent);
175
+ const componentPath = findComponentPath(PageComponent);
180
176
  if (componentPath) {
181
- const { renderInWorker: renderInWorker2 } = await Promise.resolve().then(() => (init_ssrRenderer(), exports_ssrRenderer));
182
- const html = await renderInWorker2({
183
- componentPath,
184
- indexPath: index,
185
- props: maybeProps
186
- });
187
- return new Response(html, {
188
- headers: { "Content-Type": "text/html" }
189
- });
177
+ try {
178
+ const { renderInWorker: renderInWorker2 } = await Promise.resolve().then(() => (init_ssrRenderer(), exports_ssrRenderer));
179
+ const html = await renderInWorker2({
180
+ componentPath,
181
+ indexPath: index,
182
+ props: maybeProps
183
+ });
184
+ return new Response(html, {
185
+ headers: { "Content-Type": "text/html" }
186
+ });
187
+ } catch {}
190
188
  }
191
189
  }
192
190
  const { createElement } = await import("react");
@@ -215,5 +213,5 @@ export {
215
213
  handleReactPageRequest
216
214
  };
217
215
 
218
- //# debugId=72487D134BE8505164756E2164756E21
216
+ //# debugId=FD9B1841605D4D8164756E2164756E21
219
217
  //# sourceMappingURL=index.js.map
@@ -3,10 +3,10 @@
3
3
  "sources": ["../src/utils/ssrErrorPage.ts", "../src/dev/ssrRenderer.ts", "../src/react/pageHandler.ts"],
4
4
  "sourcesContent": [
5
5
  "export const ssrErrorPage = (framework: string, error: unknown) => {\n\tconst frameworkColors: Record<string, string> = {\n\t\tangular: '#dd0031',\n\t\thtml: '#e34c26',\n\t\thtmx: '#1a365d',\n\t\treact: '#61dafb',\n\t\tsvelte: '#ff3e00',\n\t\tvue: '#42b883'\n\t};\n\n\tconst accent = frameworkColors[framework] ?? '#94a3b8';\n\tconst label = framework.charAt(0).toUpperCase() + framework.slice(1);\n\tconst message = error instanceof Error ? error.message : String(error);\n\n\treturn `<!DOCTYPE html>\n<html>\n<head>\n<meta charset=\"utf-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n<title>SSR Error - AbsoluteJS</title>\n<style>\n*{margin:0;padding:0;box-sizing:border-box}\nbody{min-height:100vh;background:linear-gradient(135deg,rgba(15,23,42,0.98) 0%,rgba(30,41,59,0.98) 100%);color:#e2e8f0;font-family:\"JetBrains Mono\",\"Fira Code\",ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:14px;line-height:1.6;display:flex;align-items:flex-start;justify-content:center;padding:32px}\n.card{max-width:720px;width:100%;background:rgba(30,41,59,0.6);border:1px solid rgba(71,85,105,0.5);border-radius:16px;box-shadow:0 25px 50px -12px rgba(0,0,0,0.5),0 0 0 1px rgba(255,255,255,0.05);overflow:hidden}\n.header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 24px;background:rgba(15,23,42,0.5);border-bottom:1px solid rgba(71,85,105,0.4)}\n.brand{font-weight:700;font-size:20px;color:#fff;letter-spacing:-0.02em}\n.badge{padding:5px 10px;border-radius:8px;font-size:12px;font-weight:600;background:${accent};color:#fff;opacity:0.95;box-shadow:0 2px 4px rgba(0,0,0,0.2)}\n.kind{color:#94a3b8;font-size:13px;font-weight:500}\n.content{padding:24px}\n.label{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:0.08em;color:#94a3b8;margin-bottom:8px}\n.message{margin:0;padding:16px 20px;background:rgba(239,68,68,0.12);border:1px solid rgba(239,68,68,0.25);border-radius:10px;overflow-x:auto;white-space:pre-wrap;word-break:break-word;color:#fca5a5;font-size:13px;line-height:1.5}\n.hint{margin-top:20px;padding:12px 20px;background:rgba(71,85,105,0.3);border-radius:10px;border:1px solid rgba(71,85,105,0.4);color:#cbd5e1;font-size:13px}\n</style>\n</head>\n<body>\n<div class=\"card\">\n<div class=\"header\">\n<div style=\"display:flex;align-items:center;gap:12px\">\n<span class=\"brand\">AbsoluteJS</span>\n<span class=\"badge\">${label}</span>\n</div>\n<span class=\"kind\">Server Render Error</span>\n</div>\n<div class=\"content\">\n<div class=\"label\">What went wrong</div>\n<pre class=\"message\">${message.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;')}</pre>\n<div class=\"hint\">A component threw during server-side rendering. Check the terminal for the full stack trace.</div>\n</div>\n</div>\n</body>\n</html>`;\n};\n",
6
- "import { resolve } from 'node:path';\n\ntype RenderRequest = {\n\tcomponentPath: string;\n\tindexPath: string;\n\tprops?: Record<string, unknown>;\n};\n\ntype PendingRender = {\n\tresolve: (html: string) => void;\n\treject: (error: Error) => void;\n};\n\nlet worker: Worker | null = null;\nlet requestId = 0;\nconst pending = new Map<number, PendingRender>();\n\nconst getWorker = () => {\n\tif (worker) return worker;\n\n\tconst workerPath = resolve(import.meta.dir, 'ssrWorker.ts');\n\tworker = new Worker(workerPath);\n\n\tworker.onmessage = (event) => {\n\t\tconst { id, ok, html, error } = event.data;\n\t\tconst req = pending.get(id);\n\t\tif (!req) return;\n\t\tpending.delete(id);\n\n\t\tif (ok) {\n\t\t\treq.resolve(html);\n\t\t} else {\n\t\t\treq.reject(new Error(error ?? 'SSR render failed'));\n\t\t}\n\t};\n\n\tworker.onerror = (event) => {\n\t\tconsole.error('[SSR Worker] Error:', event);\n\t\t// Reject all pending\n\t\tfor (const [id, req] of pending) {\n\t\t\treq.reject(new Error('SSR worker crashed'));\n\t\t\tpending.delete(id);\n\t\t}\n\t\tworker = null;\n\t};\n\n\treturn worker;\n};\n\nexport const renderInWorker = (request: RenderRequest) =>\n\tnew Promise<string>((resolvePromise, rejectPromise) => {\n\t\tconst id = ++requestId;\n\t\tpending.set(id, {\n\t\t\treject: rejectPromise,\n\t\t\tresolve: resolvePromise\n\t\t});\n\n\t\tconst w = getWorker();\n\t\tw.postMessage({\n\t\t\tcomponentPath: resolve(request.componentPath),\n\t\t\tid,\n\t\t\tindexPath: request.indexPath,\n\t\t\tprops: request.props\n\t\t});\n\t});\n",
7
- "import type { ComponentType as ReactComponent } from 'react';\nimport { ssrErrorPage } from '../utils/ssrErrorPage';\n\nconst isDev = process.env['NODE_ENV'] === 'development';\n\n// In dev mode, resolve the component's source path from its name\n// so we can render in a worker (outside bun --hot's module graph)\nconst resolveComponentPath = (component: ReactComponent<Record<string, unknown>>) => {\n\tconst name = component.displayName ?? component.name;\n\tif (!name) return null;\n\n\tconst config = globalThis.__hmrDevResult?.hmrState?.config;\n\tconst reactDir = config?.reactDirectory;\n\tif (!reactDir) return null;\n\n\tconst { resolve, join } = require('node:path');\n\tconst { existsSync } = require('node:fs');\n\tconst pagesDir = resolve(reactDir, 'pages');\n\tconst candidates = [\n\t\tjoin(pagesDir, `${name}.tsx`),\n\t\tjoin(pagesDir, `${name}.jsx`),\n\t\tjoin(pagesDir, `${name}.ts`)\n\t];\n\n\tfor (const candidate of candidates) {\n\t\tif (existsSync(candidate)) return candidate;\n\t}\n\n\treturn null;\n};\n\nexport const handleReactPageRequest = async <\n\tProps extends Record<string, unknown> = Record<never, never>\n>(\n\tPageComponent: ReactComponent<Props>,\n\tindex: string,\n\t...props: keyof Props extends never ? [] : [props: NoInfer<Props>]\n) => {\n\ttry {\n\t\tconst [maybeProps] = props;\n\n\t\t// In dev mode, render in a worker to avoid polluting\n\t\t// bun --hot's module graph with frontend imports\n\t\tif (isDev) {\n\t\t\tconst componentPath = resolveComponentPath(\n\t\t\t\tPageComponent as ReactComponent<Record<string, unknown>>\n\t\t\t);\n\t\t\tif (componentPath) {\n\t\t\t\tconst { renderInWorker } = await import(\n\t\t\t\t\t'../dev/ssrRenderer'\n\t\t\t\t);\n\t\t\t\tconst html = await renderInWorker({\n\t\t\t\t\tcomponentPath,\n\t\t\t\t\tindexPath: index,\n\t\t\t\t\tprops: maybeProps as Record<string, unknown> | undefined\n\t\t\t\t});\n\n\t\t\t\treturn new Response(html, {\n\t\t\t\t\theaders: { 'Content-Type': 'text/html' }\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\t// Production path (or fallback if component path not found)\n\t\tconst { createElement } = await import('react');\n\t\tconst { renderToReadableStream } = await import('react-dom/server');\n\n\t\tconst element =\n\t\t\tmaybeProps !== undefined\n\t\t\t\t? createElement(PageComponent, maybeProps)\n\t\t\t\t: createElement(PageComponent);\n\n\t\tconst propsScript = maybeProps\n\t\t\t? `window.__INITIAL_PROPS__=${JSON.stringify(maybeProps)}`\n\t\t\t: '';\n\n\t\tconst stream = await renderToReadableStream(element, {\n\t\t\tbootstrapModules: [index],\n\t\t\tbootstrapScriptContent: propsScript || undefined,\n\t\t\tonError(error: unknown) {\n\t\t\t\tconsole.error('[SSR] React streaming error:', error);\n\t\t\t}\n\t\t});\n\n\t\treturn new Response(stream, {\n\t\t\theaders: { 'Content-Type': 'text/html' }\n\t\t});\n\t} catch (error) {\n\t\tconsole.error('[SSR] React render error:', error);\n\n\t\treturn new Response(ssrErrorPage('react', error), {\n\t\t\theaders: { 'Content-Type': 'text/html' },\n\t\t\tstatus: 500\n\t\t});\n\t}\n};\n"
6
+ "import { resolve } from 'node:path';\n\ntype RenderRequest = {\n\tcomponentPath: string;\n\tindexPath: string;\n\tprops?: Record<string, unknown>;\n};\n\ntype PendingRender = {\n\tresolve: (html: string) => void;\n\treject: (error: Error) => void;\n};\n\nlet worker: Worker | null = null;\nlet requestId = 0;\nconst pending = new Map<number, PendingRender>();\n\nconst getWorker = () => {\n\tif (worker) return worker;\n\n\t// Resolve from the package's dist/dev/ directory. The worker runs in\n\t// the user's project context so it can resolve their node_modules.\n\tconst workerPath = resolve(import.meta.dir, 'ssrWorker.ts');\n\tworker = new Worker(workerPath, { cwd: process.cwd() } as ConstructorParameters<typeof Worker>[1]);\n\n\tworker.onmessage = (event) => {\n\t\tconst { id, ok, html, error } = event.data;\n\t\tconst req = pending.get(id);\n\t\tif (!req) return;\n\t\tpending.delete(id);\n\n\t\tif (ok) {\n\t\t\treq.resolve(html);\n\t\t} else {\n\t\t\treq.reject(new Error(error ?? 'SSR render failed'));\n\t\t}\n\t};\n\n\tworker.onerror = (event) => {\n\t\tconsole.error('[SSR Worker] Error:', event);\n\t\t// Reject all pending\n\t\tfor (const [id, req] of pending) {\n\t\t\treq.reject(new Error('SSR worker crashed'));\n\t\t\tpending.delete(id);\n\t\t}\n\t\tworker = null;\n\t};\n\n\treturn worker;\n};\n\nexport const renderInWorker = (request: RenderRequest) =>\n\tnew Promise<string>((resolvePromise, rejectPromise) => {\n\t\tconst id = ++requestId;\n\t\tpending.set(id, {\n\t\t\treject: rejectPromise,\n\t\t\tresolve: resolvePromise\n\t\t});\n\n\t\tconst w = getWorker();\n\t\tw.postMessage({\n\t\t\tcomponentPath: resolve(request.componentPath),\n\t\t\tid,\n\t\t\tindexPath: request.indexPath,\n\t\t\tprops: request.props\n\t\t});\n\t});\n",
7
+ "import type { ComponentType as ReactComponent } from 'react';\nimport { ssrErrorPage } from '../utils/ssrErrorPage';\n\nconst isDev = process.env['NODE_ENV'] === 'development';\n\n// Resolve page component source path from its name for worker SSR\nconst findComponentPath = (component: ReactComponent<Record<string, unknown>>) => {\n\tconst name = component.displayName ?? component.name;\n\tif (!name) return null;\n\n\tconst config = globalThis.__hmrDevResult?.hmrState?.config;\n\tconst reactDir = config?.reactDirectory;\n\tif (!reactDir) return null;\n\n\tconst { resolve, join } = require('node:path');\n\tconst { existsSync } = require('node:fs');\n\tconst pagesDir = resolve(reactDir, 'pages');\n\n\tfor (const ext of ['.tsx', '.jsx', '.ts']) {\n\t\tconst candidate = join(pagesDir, `${name}${ext}`);\n\t\tif (existsSync(candidate)) return candidate;\n\t}\n\n\treturn null;\n};\n\nexport const handleReactPageRequest = async <\n\tProps extends Record<string, unknown> = Record<never, never>\n>(\n\tPageComponent: ReactComponent<Props>,\n\tindex: string,\n\t...props: keyof Props extends never ? [] : [props: NoInfer<Props>]\n) => {\n\ttry {\n\t\tconst [maybeProps] = props;\n\n\t\t// Dev mode: render in a worker to isolate frontend imports\n\t\t// from bun --hot's module graph (prevents server restarts)\n\t\tif (isDev) {\n\t\t\tconst componentPath = findComponentPath(\n\t\t\t\tPageComponent as ReactComponent<Record<string, unknown>>\n\t\t\t);\n\t\t\tif (componentPath) {\n\t\t\t\ttry {\n\t\t\t\t\tconst { renderInWorker } = await import(\n\t\t\t\t\t\t'../dev/ssrRenderer'\n\t\t\t\t\t);\n\t\t\t\t\tconst html = await renderInWorker({\n\t\t\t\t\t\tcomponentPath,\n\t\t\t\t\t\tindexPath: index,\n\t\t\t\t\t\tprops: maybeProps as\n\t\t\t\t\t\t\t| Record<string, unknown>\n\t\t\t\t\t\t\t| undefined\n\t\t\t\t\t});\n\n\t\t\t\t\treturn new Response(html, {\n\t\t\t\t\t\theaders: { 'Content-Type': 'text/html' }\n\t\t\t\t\t});\n\t\t\t\t} catch {\n\t\t\t\t\t// Worker failed fall through to direct render\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tconst { createElement } = await import('react');\n\t\tconst { renderToReadableStream } = await import('react-dom/server');\n\n\t\tconst element =\n\t\t\tmaybeProps !== undefined\n\t\t\t\t? createElement(PageComponent, maybeProps)\n\t\t\t\t: createElement(PageComponent);\n\n\t\tconst propsScript = maybeProps\n\t\t\t? `window.__INITIAL_PROPS__=${JSON.stringify(maybeProps)}`\n\t\t\t: '';\n\n\t\tconst stream = await renderToReadableStream(element, {\n\t\t\tbootstrapModules: [index],\n\t\t\tbootstrapScriptContent: propsScript || undefined,\n\t\t\tonError(error: unknown) {\n\t\t\t\tconsole.error('[SSR] React streaming error:', error);\n\t\t\t}\n\t\t});\n\n\t\treturn new Response(stream, {\n\t\t\theaders: { 'Content-Type': 'text/html' }\n\t\t});\n\t} catch (error) {\n\t\tconsole.error('[SSR] React render error:', error);\n\n\t\treturn new Response(ssrErrorPage('react', error), {\n\t\t\theaders: { 'Content-Type': 'text/html' },\n\t\t\tstatus: 500\n\t\t});\n\t}\n};\n"
8
8
  ],
9
- "mappings": "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",
10
- "debugId": "72487D134BE8505164756E2164756E21",
9
+ "mappings": "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",
10
+ "debugId": "FD9B1841605D4D8164756E2164756E21",
11
11
  "names": []
12
12
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/native-darwin-arm64",
3
- "version": "0.19.0-beta.35",
3
+ "version": "0.19.0-beta.37",
4
4
  "description": "Native optimizations for AbsoluteJS (darwin arm64)",
5
5
  "license": "BSL-1.1",
6
6
  "os": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/native-darwin-x64",
3
- "version": "0.19.0-beta.35",
3
+ "version": "0.19.0-beta.37",
4
4
  "description": "Native optimizations for AbsoluteJS (darwin x64)",
5
5
  "license": "BSL-1.1",
6
6
  "os": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/native-linux-arm64",
3
- "version": "0.19.0-beta.35",
3
+ "version": "0.19.0-beta.37",
4
4
  "description": "Native optimizations for AbsoluteJS (linux arm64)",
5
5
  "license": "BSL-1.1",
6
6
  "os": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/native-linux-x64",
3
- "version": "0.19.0-beta.35",
3
+ "version": "0.19.0-beta.37",
4
4
  "description": "Native optimizations for AbsoluteJS (linux x64)",
5
5
  "license": "BSL-1.1",
6
6
  "os": [
package/package.json CHANGED
@@ -138,10 +138,10 @@
138
138
  }
139
139
  },
140
140
  "optionalDependencies": {
141
- "@absolutejs/native-darwin-arm64": "0.19.0-beta.35",
142
- "@absolutejs/native-darwin-x64": "0.19.0-beta.35",
143
- "@absolutejs/native-linux-arm64": "0.19.0-beta.35",
144
- "@absolutejs/native-linux-x64": "0.19.0-beta.35"
141
+ "@absolutejs/native-darwin-arm64": "0.19.0-beta.37",
142
+ "@absolutejs/native-darwin-x64": "0.19.0-beta.37",
143
+ "@absolutejs/native-linux-arm64": "0.19.0-beta.37",
144
+ "@absolutejs/native-linux-x64": "0.19.0-beta.37"
145
145
  },
146
146
  "repository": {
147
147
  "type": "git",
@@ -162,5 +162,5 @@
162
162
  "typecheck": "bun run vue-tsc --noEmit"
163
163
  },
164
164
  "types": "./dist/src/index.d.ts",
165
- "version": "0.19.0-beta.35"
165
+ "version": "0.19.0-beta.37"
166
166
  }