-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
101 lines (90 loc) · 2.61 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
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
const next = require("next");
const Koa = require("koa");
const router = require("koa-route");
const LRUCache = require("lru-cache");
const c2k = require("koa2-connect");
const proxyMiddleware = require("http-proxy-middleware");
const port = parseInt(process.env.PORT, 10) || 9527;
const dev = process.env.NODE_ENV !== "production";
const test = process.env.NODE_TEST === "test";
const app = next({ dev });
const handle = app.getRequestHandler();
// This is where we cache our rendered HTML pages
const ssrCache = new LRUCache({
max: 100,
maxAge: 1000 * 60 * 60 // 1hour
});
/*
* NB: make sure to modify this to take into account anything that should trigger
* an immediate page change (e.g a locale stored in req.session)
*/
function getCacheKey(ctx) {
return ctx.url;
}
function renderAndCache(ctx, pagePath, noCache, queryParams = null) {
if (dev || test) ssrCache.reset();
if (noCache === "noCache") {
return app
.renderToHTML(ctx.req, ctx.res, pagePath, queryParams)
.then(html => {
// Let's cache this page
console.info("no cache");
ctx.body = html;
})
.catch(err => {
console.info("ERRR", err);
return app.renderError(err, ctx.req, ctx.res, pagePath, queryParams);
});
}
const key = getCacheKey(ctx.req);
// If we have a page in the cache, let's serve it
if (ssrCache.has(key)) {
console.info(`CACHE HIT: ${key}`);
ctx.body = ssrCache.get(key);
return Promise.resolve();
}
// If not let's render the page into HTML
return app
.renderToHTML(ctx.req, ctx.res, pagePath, queryParams)
.then(html => {
// Let's cache this page
console.info(`CACHE MISS: ${key}`);
ssrCache.set(key, html);
ctx.body = html;
})
.catch(err => {
console.info("ERRR", err);
return app.renderError(err, ctx.req, ctx.res, pagePath, queryParams);
});
}
app.prepare().then(() => {
const server = new Koa();
server.use(router.get("/", ctx => renderAndCache(ctx, "/index")));
if (dev) {
// Set up the proxy.
server.use(async (ctx, next) => {
router.get(
"*",
c2k(
proxyMiddleware("/api", {
target: "https://api.github.com",
pathRewrite: { "^/api": "/" },
changeOrigin: true
})
)(ctx, next)
);
});
}
server.use(async ctx => {
await handle(ctx.req, ctx.res);
ctx.respond = false;
});
server.use(async (ctx, next) => {
ctx.res.statusCode = 200;
await next();
});
server.listen(port, err => {
if (err) throw err;
console.info(`> Ready on http://localhost:${port}`);
});
});