-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.ts
129 lines (110 loc) · 3.59 KB
/
server.ts
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import crypto from 'node:crypto';
import path from 'node:path';
import {
createRequestHandler as expressCreateRequestHandler,
type GetLoadContextFunction,
} from '@remix-run/express';
import {broadcastDevReady} from '@remix-run/node';
import {wrapExpressCreateRequestHandler} from '@sentry/remix';
import {watch} from 'chokidar';
import compression from 'compression';
import express from 'express';
import helmet from 'helmet';
import morgan from 'morgan';
const app = express();
const BUILD_DIR = path.join(process.cwd(), 'build');
app.use((req, res, next) => {
// /clean-urls/ -> /clean-urls
if (req.path.endsWith('/') && req.path.length > 1) {
const query = req.url.slice(req.path.length);
const safepath = req.path.slice(0, -1).replace(/\/+/g, '/');
res.redirect(301, safepath + query);
return;
}
next();
});
app.use(compression());
// http://expressjs.com/en/advanced/best-practice-security.html#at-a-minimum-disable-x-powered-by-header
app.disable('x-powered-by');
// Generate a nonce for each request, which we'll use for CSP.
app.use((_, res, next) => {
res.locals.cspNonce = crypto.randomBytes(32).toString('base64');
next();
});
// Security-related HTTP response headers, such as content-security-policy (CSP) and
// strict-transport-security.
app.use(
helmet({
contentSecurityPolicy: {
directives: {
'connect-src': [
process.env.NODE_ENV === 'development' ? 'ws:' : null,
"'self'",
].filter(Boolean) as string[],
'script-src': [
"'strict-dynamic'",
// @ts-expect-error Helmet types don't seem to know about res.locals
(_, res) => `'nonce-${res.locals.cspNonce}'`,
],
},
},
}),
);
// Remix fingerprints its assets so we can cache forever.
app.use(
'/build',
express.static('public/build', {immutable: true, maxAge: '1y'}),
);
// Everything else (like favicon.ico) is cached for an hour. You may want to be
// more aggressive with this caching.
app.use(express.static('public', {maxAge: '1h'}));
app.use(morgan('tiny'));
const createRequestHandler = process.env.SENTRY_DSN
? wrapExpressCreateRequestHandler(expressCreateRequestHandler)
: expressCreateRequestHandler;
const getLoadContext: GetLoadContextFunction = (req, res) => {
return {
cspNonce: res.locals.cspNonce,
};
};
app.all(
'*',
process.env.NODE_ENV === 'production'
? createRequestHandler({build: require(BUILD_DIR), getLoadContext})
: (...args) => {
const requestHandler = createRequestHandler({
build: require(BUILD_DIR),
getLoadContext,
mode: process.env.NODE_ENV,
});
return requestHandler(...args);
},
);
const port = Number(process.env.PORT) || 3000;
startServer(port);
function startServer(port: number) {
const server = app.listen(port, () => {
// Require the built app so we're ready when the first request comes in.
const build = require(BUILD_DIR);
console.log(`✅ app ready: http://localhost:${port}`);
if (process.env.NODE_ENV === 'development') {
broadcastDevReady(build);
// Watch the build directory and reload the server on any changes.
watch(BUILD_DIR, {ignoreInitial: true}).on('all', () => {
const build = reimportServer();
broadcastDevReady(build);
});
}
});
process.on('SIGINT', () => server.close());
process.on('SIGQUIT', () => server.close());
process.on('SIGTERM', () => server.close());
}
function reimportServer() {
for (const key in require.cache) {
if (key.startsWith(BUILD_DIR)) {
delete require.cache[key];
}
}
return require(BUILD_DIR);
}