-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.ts
71 lines (62 loc) · 1.9 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
import { createRequestHandler } from '@remix-run/express';
import { fileURLToPath } from 'url';
import { dirname } from 'path';
import { installGlobals } from '@remix-run/node';
import compression from 'compression';
import express, { Request, Response } from 'express';
import morgan from 'morgan';
import { createServer, IncomingMessage, ServerResponse } from 'http';
import { Socket } from 'net';
import wisp from 'wisp-server-node';
import dotenv from 'dotenv';
dotenv.config();
installGlobals();
const port = parseInt(process.env.PORT as string, 10);
const viteDevServer =
process.env.NODE_ENV === 'production'
? undefined
: await import('vite').then(vite =>
vite.createServer({
server: { middlewareMode: true }
})
); // port 24678 is the default port for Vite's server cannot use same port as express
const remixHandler = createRequestHandler({
build: viteDevServer
? () => viteDevServer.ssrLoadModule('virtual:remix/server-build')
: // eslint-disable-next-line
// @ts-ignore
// eslint-disable-next-line
await import('./build/server/index.js')
});
const app = express();
app.use(compression());
app.disable('x-powered-by');
// handle asset requests
if (viteDevServer) {
app.use(viteDevServer.middlewares);
} else {
// Vite fingerprints its assets so we can cache forever.
app.use(
'/assets',
express.static('build/client/assets', {
immutable: true,
maxAge: '1y'
})
);
}
app.use(express.static('build/client', { maxAge: '1h' }));
app.use(morgan('tiny'));
// handle SSR requests
app.all('*', remixHandler);
const server = createServer();
server.on('request', (req: Request, res: Response) => {
app(req, res);
});
server.on('upgrade', (req: IncomingMessage, socket: Socket, head: Buffer) => {
if (req.url && req.url.endsWith('/wisp/')) {
wisp.routeRequest(req, socket, head);
}
});
server.listen(port, () => {
console.log(`Express server started on http://localhost:${port}`);
});