|
| 1 | +import fs from 'node:fs' |
| 2 | +import path from 'node:path' |
| 3 | +import { fileURLToPath } from 'node:url' |
| 4 | +import express from 'express' |
| 5 | + |
| 6 | +const __dirname = path.dirname(fileURLToPath(import.meta.url)) |
| 7 | +const isTest = process.env.VITEST |
| 8 | + |
| 9 | +const DYNAMIC_STYLES = ` |
| 10 | + <style> |
| 11 | + .ssr-proxy { |
| 12 | + color: coral; |
| 13 | + } |
| 14 | + </style> |
| 15 | +` |
| 16 | + |
| 17 | +export async function createServer(root = process.cwd(), hmrPort) { |
| 18 | + const resolve = (p) => path.resolve(__dirname, p) |
| 19 | + |
| 20 | + const app = express() |
| 21 | + |
| 22 | + /** |
| 23 | + * @type {import('vite').ViteDevServer} |
| 24 | + */ |
| 25 | + const vite = await ( |
| 26 | + await import('vite') |
| 27 | + ).createServer({ |
| 28 | + root, |
| 29 | + logLevel: isTest ? 'error' : 'info', |
| 30 | + css: { |
| 31 | + transformer: 'lightningcss', |
| 32 | + lightningcss: { |
| 33 | + drafts: { nesting: true }, |
| 34 | + }, |
| 35 | + }, |
| 36 | + server: { |
| 37 | + middlewareMode: true, |
| 38 | + watch: { |
| 39 | + // During tests we edit the files too fast and sometimes chokidar |
| 40 | + // misses change events, so enforce polling for consistency |
| 41 | + usePolling: true, |
| 42 | + interval: 100, |
| 43 | + }, |
| 44 | + hmr: { |
| 45 | + port: hmrPort, |
| 46 | + }, |
| 47 | + }, |
| 48 | + appType: 'custom', |
| 49 | + }) |
| 50 | + // use vite's connect instance as middleware |
| 51 | + app.use(vite.middlewares) |
| 52 | + |
| 53 | + app.use('*', async (req, res, next) => { |
| 54 | + try { |
| 55 | + let [url] = req.originalUrl.split('?') |
| 56 | + if (url.endsWith('/')) url += 'index.html' |
| 57 | + |
| 58 | + if (url.startsWith('/favicon.ico')) { |
| 59 | + return res.status(404).end('404') |
| 60 | + } |
| 61 | + |
| 62 | + const htmlLoc = resolve(`.${url}`) |
| 63 | + let template = fs.readFileSync(htmlLoc, 'utf-8') |
| 64 | + |
| 65 | + template = template.replace('<!--[inline-css]-->', DYNAMIC_STYLES) |
| 66 | + |
| 67 | + // Force calling transformIndexHtml with url === '/', to simulate |
| 68 | + // usage by ecosystem that was recommended in the SSR documentation |
| 69 | + // as `const url = req.originalUrl` |
| 70 | + const html = await vite.transformIndexHtml('/', template) |
| 71 | + |
| 72 | + res.status(200).set({ 'Content-Type': 'text/html' }).end(html) |
| 73 | + } catch (e) { |
| 74 | + vite && vite.ssrFixStacktrace(e) |
| 75 | + console.log(e.stack) |
| 76 | + res.status(500).end(e.stack) |
| 77 | + } |
| 78 | + }) |
| 79 | + |
| 80 | + return { app, vite } |
| 81 | +} |
| 82 | + |
| 83 | +if (!isTest) { |
| 84 | + createServer().then(({ app }) => |
| 85 | + app.listen(5173, () => { |
| 86 | + console.log('http://localhost:5173') |
| 87 | + }), |
| 88 | + ) |
| 89 | +} |
0 commit comments