-
Notifications
You must be signed in to change notification settings - Fork 94
/
index.js
63 lines (48 loc) · 1.67 KB
/
index.js
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
// This is a simple Node server that uses the built project.
global.fetch = require('node-fetch')
const path = require('path')
const express = require('express')
const example = process.argv[2]
if (!example) {
throw new Error('Specify example name in the first argument')
}
const dist = `../${example}/dist`
// This contains a list of static routes (assets)
const { ssr } = require(`${dist}/server/package.json`)
// The manifest is required for preloading assets
const manifest = require(`${dist}/client/ssr-manifest.json`)
// This is the server renderer we just built
const { default: renderPage } = require(`${dist}/server`)
const api = require('./api')
const server = express()
// Serve every static asset route
for (const asset of ssr.assets || []) {
server.use(
'/' + asset,
express.static(path.join(__dirname, `${dist}/client/` + asset))
)
}
// Custom API to get data for each page
// See src/main.js to see how this is called
api.forEach(({ route, handler, method = 'get' }) =>
server[method](route, handler)
)
// Everything else is treated as a "rendering request"
server.get('*', async (request, response) => {
const url =
request.protocol + '://' + request.get('host') + request.originalUrl
const { html, status, statusText, headers } = await renderPage(url, {
manifest,
preload: true,
// Anything passed here will be available in the main hook
request,
response,
// initialState: { ... } // <- This would also be available
})
response.type('html')
response.writeHead(status || 200, statusText || headers, headers)
response.end(html)
})
const port = 8080
console.log(`Server started: http://localhost:${port}`)
server.listen(port)