-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
56 lines (45 loc) · 1.44 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
import * as serverBuild from "@remix-run/dev/server-build";
import { createRequestHandler } from "@remix-run/express";
import compression from "compression";
import express from "express";
import http from "http";
import morgan from "morgan";
import { Server } from "socket.io";
import ConnectionController from "./app/controllers/connection";
const app = express();
// create custom express server
const server = http.createServer(app);
//create server socket io and attach to custom express server
const io = new Server(server, {
cors: {
origin: "*",
},
transports: ["websocket"],
allowUpgrades: false,
});
// attach socket connection controller
const socketConn = new ConnectionController(io);
socketConn.start();
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(
"*",
createRequestHandler({
build: serverBuild,
mode: process.env.NODE_ENV,
})
);
const port = process.env.PORT || 3000;
server.listen(port, () => {
console.log(`Express server listening on port ${port}`);
});