-
Notifications
You must be signed in to change notification settings - Fork 28.1k
/
Copy pathserver.js
43 lines (35 loc) · 1.08 KB
/
server.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
const cacheableResponse = require('cacheable-response')
const express = require('express')
const next = require('next')
const port = parseInt(process.env.PORT, 10) || 3000
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
const ssrCache = cacheableResponse({
ttl: 1000 * 60 * 60, // 1hour
get: async ({ req, res }) => {
const rawResEnd = res.end
const data = await new Promise((resolve) => {
res.end = (payload) => {
resolve(res.statusCode === 200 && payload)
}
app.render(req, res, req.path, {
...req.query,
...req.params,
})
})
res.end = rawResEnd
return { data }
},
send: ({ data, res }) => res.send(data),
})
app.prepare().then(() => {
const server = express()
server.get('/', (req, res) => ssrCache({ req, res }))
server.get('/blog/:id', (req, res) => ssrCache({ req, res }))
server.get('*', (req, res) => handle(req, res))
server.listen(port, (err) => {
if (err) throw err
console.log(`> Ready on http://localhost:${port}`)
})
})