-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpress-server.ts
93 lines (79 loc) · 2.15 KB
/
express-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
import chokidar from "chokidar";
import express, { Express } from "express";
import { readFileSync } from "fs";
import { SERVER_PORT, WATCH_DIRECTORY } from "./constants";
// Put index-file content to the body request
function readIndex(req, _, next) {
try {
req.body = readFileSync(`${WATCH_DIRECTORY}/index.html`).toString();
next();
} catch (err) {
next(err.message);
}
}
// Add template variable to the index-file content
function injectVariable(req, res, next) {
if (req.body) {
req.body = req.body.replace(/<\/(body)>/gi, "%$1-injection%</$1>");
next();
} else {
res.status(204).end();
}
}
// Inject client-side code to enable sse-listening
function injectSse(req, res, next) {
if (req.body) {
try {
const sseInjection = readFileSync("./sse-injection.html").toString();
req.body = req.body.replace("%body-injection%", sseInjection);
next();
} catch (err) {
next(err.message);
}
} else {
res.status(204).end();
}
}
// Directory watcher setup
const watcher = chokidar.watch(`${WATCH_DIRECTORY}/**`, {
persistent: true,
interval: 300,
});
// Server setup
const app: Express = express();
// Root URL processor with custom middlewares
app.get("/", readIndex, injectVariable, injectSse, (req, res) => {
res.send(req.body);
});
// Hot-reload feature over Server-sent events (SSE)
app.get("/events", (req, res, next) => {
try {
const headers = {
"Content-Type": "text/event-stream",
Connection: "keep-alive",
"Cache-Control": "no-cache",
};
res.writeHead(200, headers);
res.write(`data: init\n\n`);
const sseHandler = (path) => {
res.write(`data: reload\n\n`);
console.log(`hot-reload on ${path}`);
};
watcher
.on("add", sseHandler)
.on("change", sseHandler)
.on("unlink", sseHandler)
.on("addDir", sseHandler)
.on("unlinkDir", sseHandler);
req.on("close", () => {
res.end("ok");
});
} catch (err) {
next(err.message);
}
});
// Static serve
app.use(express.static(WATCH_DIRECTORY));
app.listen(SERVER_PORT, () =>
console.log(`hot-reload server was started on port ${SERVER_PORT}`),
);