-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.ts
More file actions
231 lines (195 loc) · 7.43 KB
/
server.ts
File metadata and controls
231 lines (195 loc) · 7.43 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
import fs from "node:fs";
import path from "node:path";
import url from "node:url";
import https from "node:https";
// Load environment variables from .env file
import dotenv from "dotenv";
dotenv.config();
import prom from "@isaacs/express-prometheus-middleware";
import { createRequestHandler } from "@remix-run/express";
import type { ServerBuild } from "@remix-run/node";
import { broadcastDevReady, installGlobals } from "@remix-run/node";
import compression from "compression";
import type { RequestHandler } from "express";
import express from "express";
import morgan from "morgan";
import sourceMapSupport from "source-map-support";
sourceMapSupport.install();
installGlobals();
run();
async function run() {
const BUILD_PATH = path.resolve("build/index.js");
const VERSION_PATH = path.resolve("build/version.txt");
const initialBuild = await reimportServer();
const remixHandler =
process.env.NODE_ENV === "development"
? await createDevRequestHandler(initialBuild)
: createRequestHandler({
build: initialBuild,
mode: initialBuild.mode,
});
const app = express();
const metricsApp = express();
app.use(
prom({
metricsPath: "/metrics",
collectDefaultMetrics: true,
metricsApp,
}),
);
app.use((req, res, next) => {
// helpful headers:
res.set("x-fly-region", process.env.FLY_REGION ?? "unknown");
res.set("Strict-Transport-Security", `max-age=${60 * 60 * 24 * 365 * 100}`);
// /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();
});
// if we're not in the primary region, then we need to make sure all
// non-GET/HEAD/OPTIONS requests hit the primary region rather than read-only
// Postgres DBs.
// learn more: https://fly.io/docs/getting-started/multi-region-databases/#replay-the-request
app.all("*", function getReplayResponse(req, res, next) {
const { method, path: pathname } = req;
const { PRIMARY_REGION, FLY_REGION } = process.env;
const isMethodReplayable = !["GET", "OPTIONS", "HEAD"].includes(method);
const isReadOnlyRegion =
FLY_REGION && PRIMARY_REGION && FLY_REGION !== PRIMARY_REGION;
const shouldReplay = isMethodReplayable && isReadOnlyRegion;
if (!shouldReplay) return next();
const logInfo = {
pathname,
method,
PRIMARY_REGION,
FLY_REGION,
};
console.info(`Replaying:`, logInfo);
res.set("fly-replay", `region=${PRIMARY_REGION}`);
return res.sendStatus(409);
});
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");
// 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"));
app.all("*", remixHandler);
const port = process.env.PORT || 3030;
const httpsPort = process.env.HTTPS_PORT || 3443;
// Try to start HTTPS server in development for extension testing
// In production, __dirname is the project root. In dev build, it's build/ so go up one level.
const certDir = fs.existsSync(path.join(__dirname, "localhost.key"))
? __dirname
: path.join(__dirname, "..");
const keyPath = path.join(certDir, "localhost.key");
const certPath = path.join(certDir, "localhost.crt");
if (process.env.NODE_ENV === "development" &&
fs.existsSync(keyPath) &&
fs.existsSync(certPath)) {
try {
const httpsOptions = {
key: fs.readFileSync(keyPath),
cert: fs.readFileSync(certPath),
};
// Helper to start server with retry for port conflicts during hot reload
const startHttpsServer = (retryCount = 0): void => {
const httpsServer = https.createServer(httpsOptions, app);
httpsServer.on('error', (err: any) => {
if (err.code === 'EADDRINUSE' && retryCount < 5) {
// Port is temporarily in use (likely from previous watch restart)
// Wait a bit and retry
const delay = (retryCount + 1) * 100;
console.log(`⏳ Port ${httpsPort} busy, retrying in ${delay}ms... (attempt ${retryCount + 1}/5)`);
setTimeout(() => startHttpsServer(retryCount + 1), delay);
} else {
console.error(`❌ Failed to start HTTPS server: ${err}`);
// Fall through to HTTP-only mode
app.listen(port, () => {
console.log(`✅ app ready (HTTP only): http://localhost:${port}`);
if (process.env.NODE_ENV === "development") {
broadcastDevReady(initialBuild);
}
});
}
});
httpsServer.listen(httpsPort, () => {
console.log(`✅ app ready (HTTPS): https://localhost:${httpsPort}`);
// Also start HTTP server for non-extension requests
app.listen(port, () => {
console.log(`✅ app ready (HTTP): http://localhost:${port}`);
});
if (process.env.NODE_ENV === "development") {
broadcastDevReady(initialBuild);
}
});
};
startHttpsServer();
return;
} catch (error) {
console.warn(`⚠️ Could not start HTTPS server: ${error}`);
console.log(` Falling back to HTTP only`);
}
}
// Fallback to HTTP only
app.listen(port, () => {
console.log(`✅ app ready: http://localhost:${port}`);
if (process.env.NODE_ENV === "development") {
broadcastDevReady(initialBuild);
}
});
const metricsPort = process.env.METRICS_PORT || 3010;
metricsApp.listen(metricsPort, () => {
console.log(`✅ metrics ready: http://localhost:${metricsPort}/metrics`);
});
async function reimportServer(): Promise<ServerBuild> {
// cjs: manually remove the server build from the require cache
Object.keys(require.cache).forEach((key) => {
if (key.startsWith(BUILD_PATH)) {
delete require.cache[key];
}
});
const stat = fs.statSync(BUILD_PATH);
// convert build path to URL for Windows compatibility with dynamic `import`
const BUILD_URL = url.pathToFileURL(BUILD_PATH).href;
// use a timestamp query parameter to bust the import cache
return import(BUILD_URL + "?t=" + stat.mtimeMs);
}
async function createDevRequestHandler(
initialBuild: ServerBuild,
): Promise<RequestHandler> {
let build = initialBuild;
async function handleServerUpdate() {
// 1. re-import the server build
build = await reimportServer();
// 2. tell Remix that this app server is now up-to-date and ready
broadcastDevReady(build);
}
const chokidar = await import("chokidar");
chokidar
.watch(VERSION_PATH, { ignoreInitial: true })
.on("add", handleServerUpdate)
.on("change", handleServerUpdate);
// wrap request handler to make sure its recreated with the latest build for every request
return async (req, res, next) => {
try {
return createRequestHandler({
build,
mode: "development",
})(req, res, next);
} catch (error) {
next(error);
}
};
}
}