1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106import fs from 'node:fs/promises'
import express from 'express'
import { Transform } from 'node:stream'
// Constants
const isProduction = process.env.NODE_ENV === 'production'
const port = process.env.PORT || 5173
const base = process.env.BASE || '/'
const ABORT_DELAY = 10000
// Cached production assets
const templateHtml = isProduction
? await fs.readFile('./dist/client/index.html', 'utf-8')
: ''
const ssrManifest = isProduction
? await fs.readFile('./dist/client/.vite/ssr-manifest.json', 'utf-8')
: undefined
// Create http server
const app = express()
// Add Vite or respective production middlewares
let vite
if (!isProduction) {
const { createServer } = await import('vite')
vite = await createServer({
server: { middlewareMode: true },
appType: 'custom',
base
})
app.use(vite.middlewares)
} else {
const compression = (await import('compression')).default
const sirv = (await import('sirv')).default
// With this on, I don't get partial stream rendering
// app.use(compression())
app.use(base, sirv('./dist/client', { extensions: [] }))
}
// Serve HTML
app.use('*', async (req, res) => {
try {
const url = req.originalUrl.replace(base, '')
let template
let render
if (!isProduction) {
// Always read fresh template in development
template = await fs.readFile('./index.html', 'utf-8')
template = await vite.transformIndexHtml(url, template)
render = (await vite.ssrLoadModule('/src/entry-server.tsx')).render
} else {
template = templateHtml
render = (await import('./dist/server/entry-server.js')).render
}
let didError = false
const { pipe, abort } = await render(req, ssrManifest, {
onShellError() {
res.status(500)
res.set({ 'Content-Type': 'text/html' })
res.send('<h1>Something went wrong</h1>')
},
onShellReady() {
res.status(didError ? 500 : 200)
res.set({ 'Content-Type': 'text/html' })
const transformStream = new Transform({
transform(chunk, encoding, callback) {
res.write(chunk, encoding)
callback()
}
})
const [htmlStart, htmlEnd] = template.split(`<!--app-html-->`)
res.write(htmlStart)
transformStream.on('finish', () => {
res.end(htmlEnd)
})
pipe(transformStream)
},
onError(error) {
didError = true
console.error(error)
}
})
setTimeout(() => {
abort()
}, ABORT_DELAY)
} catch (e) {
vite?.ssrFixStacktrace(e)
console.log(e.stack)
res.status(500).end(e.stack)
}
})
// Start http server
app.listen(port, () => {
console.log(`Server started at http://localhost:${port}`)
})