mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
57 lines
1.4 KiB
// @ts-check
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import polka from 'polka';
|
|
import { createServer as createViteServer } from 'vite';
|
|
|
|
const PORT = process.env.PORT || '5173';
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
process.env.NODE_ENV = 'development';
|
|
|
|
async function createServer() {
|
|
const app = polka();
|
|
|
|
const vite = await createViteServer({
|
|
server: { middlewareMode: true },
|
|
appType: 'custom'
|
|
});
|
|
|
|
app.use(vite.middlewares);
|
|
|
|
app.use('*', async (req, res) => {
|
|
if (req.originalUrl !== '/') {
|
|
res.writeHead(200, {
|
|
'Content-Type': 'application/javascript'
|
|
});
|
|
res.end(fs.createReadStream(path.resolve('./dist' + req.originalUrl)));
|
|
return;
|
|
}
|
|
|
|
const template = fs.readFileSync(path.resolve(__dirname, 'index.html'), 'utf-8');
|
|
const transformed_template = await vite.transformIndexHtml(req.originalUrl, template);
|
|
const { body: appHtml, head: headHtml } = await vite.ssrLoadModule('./src/entry-server.ts');
|
|
|
|
const html = transformed_template
|
|
.replace(`<!--ssr-html-->`, appHtml)
|
|
.replace(`<!--ssr-head-->`, headHtml);
|
|
|
|
res.writeHead(200, { 'Content-Type': 'text/html' }).end(html);
|
|
});
|
|
|
|
return { app, vite };
|
|
}
|
|
|
|
createServer()
|
|
.then(({ app }) =>
|
|
app.listen(PORT, () => {
|
|
console.log(`http://localhost:${PORT}`);
|
|
})
|
|
)
|
|
.catch((err) => {
|
|
console.error('Error Starting Server:\n', err);
|
|
process.exit(1);
|
|
});
|