-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
52 lines (42 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
const cacheableResponse = require('cacheable-response');
const express = require('express');
const next = require('next');
const { join, resolve } = require('path');
const { parse } = require('url');
const dev = process.env.NODE_ENV !== 'production';
const port = dev
? parseInt(process.env.PORT, 10) || 8000
: parseInt(process.env.PORT, 10) || 5000;
const app = next({ dev, dir: dev ? './src' : './build' });
const handle = app.getRequestHandler();
const requireHTTPS = (req, res, next) => {
// The 'x-forwarded-proto' check is for Heroku
if (!req.secure && req.get('x-forwarded-proto') !== 'https' && !dev) {
return res.redirect('https://' + req.get('host') + req.url);
}
next();
};
const ssrCache = cacheableResponse({
ttl: 1000 * 60 * 60, // 1hour
get: async ({ req, res, pagePath, queryParams }) => ({
data: await app.renderToHTML(req, res, pagePath, queryParams)
}),
send: ({ data, res }) => res.send(data)
});
app.prepare().then(() => {
const server = express();
server.use(requireHTTPS);
server.use('/static', express.static(resolve(__dirname, './static')));
server.get('/service-worker.js', (req, res) => {
const parsedUrl = parse(req.url, true);
const { pathname } = parsedUrl;
const filePath = join(__dirname, '.next', pathname);
app.serveStatic(req, res, filePath);
});
server.get('/', (req, res) => ssrCache({ req, res, pagePath: '/' }));
server.get('*', (req, res) => handle(req, res));
server.listen(port, err => {
if (err) throw err;
console.log(`> Ready on http://localhost:${port}`);
});
});