-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
47 lines (37 loc) · 1.31 KB
/
server.js
File metadata and controls
47 lines (37 loc) · 1.31 KB
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
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 data = await app.render(req, res, req.path, {
...req.query,
...req.params,
});
// Add here custom logic for when you do not want to cache the page, for
// example when the page returns a 404 status code:
if (res.statusCode === 404) {
res.end(data);
return;
}
return { data };
},
send: ({ data, res }) => res.send(data),
});
app.prepare().then(() => {
const server = express();
server.get("/", (req, res) => ssrCache({ req, res }));
server.get("/costumers", (req, res) => ssrCache({ req, res }));
server.get("/gallery", (req, res) => ssrCache({ req, res }));
server.get("/budget", (req, res) => ssrCache({ req, res }));
server.get("/workattack", (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}`);
});
});