generated from custom-cards/boilerplate-card
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathhot-reload.mjs
executable file
·36 lines (34 loc) · 1.03 KB
/
hot-reload.mjs
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
// @ts-check
import WebSocket, { WebSocketServer } from "ws";
import chokidar from "chokidar";
const watchOptn = {
// awaitWriteFinish: {stabilityThreshold:100, pollInterval:50},
ignoreInitial: true,
};
async function hotReload() {
const wss = new WebSocketServer({ port: 8081 });
wss.on("connection", () => console.log(wss.clients.size));
wss.on("close", () => console.log(wss.clients.size));
const sendToClients = (
/** @type {{ action: string; payload?: any }} */ message
) => {
wss.clients.forEach(function each(
/** @type {{ readyState: number; send: (arg0: string) => void; }} */ client
) {
if (client.readyState === WebSocket.OPEN) {
console.log("sending");
client.send(JSON.stringify(message));
}
});
};
chokidar.watch("src", watchOptn).on("all", async (...args) => {
console.log(args);
try {
sendToClients({ action: "update-app" });
} catch (e) {
console.error(e);
sendToClients({ action: "error", payload: e.message });
}
});
}
hotReload();