2022-10-12 21:27:56 +00:00
|
|
|
import type { SSRManifest } from 'astro';
|
2023-07-27 18:24:39 +02:00
|
|
|
import { NodeApp, applyPolyfills } from 'astro/app/node';
|
2023-05-03 17:40:47 +01:00
|
|
|
import middleware from './nodeMiddleware.js';
|
2022-10-12 17:25:51 -04:00
|
|
|
import startServer from './standalone.js';
|
2022-10-12 21:27:56 +00:00
|
|
|
import type { Options } from './types';
|
2022-03-24 07:26:25 -04:00
|
|
|
|
2023-07-27 18:24:39 +02:00
|
|
|
applyPolyfills();
|
2023-01-11 00:59:20 +08:00
|
|
|
export function createExports(manifest: SSRManifest, options: Options) {
|
2022-03-24 17:08:36 -04:00
|
|
|
const app = new NodeApp(manifest);
|
2022-03-24 07:26:25 -04:00
|
|
|
return {
|
2023-01-11 00:59:20 +08:00
|
|
|
handler: middleware(app, options.mode),
|
2023-02-03 00:12:22 +00:00
|
|
|
startServer: () => startServer(app, options),
|
2022-03-24 11:27:15 +00:00
|
|
|
};
|
2022-03-24 07:26:25 -04:00
|
|
|
}
|
|
|
|
|
2022-10-12 17:25:51 -04:00
|
|
|
export function start(manifest: SSRManifest, options: Options) {
|
2022-10-12 21:27:56 +00:00
|
|
|
if (options.mode !== 'standalone' || process.env.ASTRO_NODE_AUTOSTART === 'disabled') {
|
2022-10-12 17:25:51 -04:00
|
|
|
return;
|
2022-09-28 16:55:27 -04:00
|
|
|
}
|
|
|
|
|
2022-10-12 17:25:51 -04:00
|
|
|
const app = new NodeApp(manifest);
|
|
|
|
startServer(app, options);
|
2022-03-24 07:26:25 -04:00
|
|
|
}
|