-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
42 lines (33 loc) · 975 Bytes
/
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
const http = require("http");
const serveStatic = require("serve-static");
const finalhandler = require("finalhandler");
const chokidar = require("chokidar");
function build() {
return new Promise((resolve, reject) => {
console.log("Building...");
delete require.cache[require.resolve("./config")];
const config = require("./config");
config.build((err) => {
if (err) return reject(err);
console.log("Done");
resolve();
});
});
}
chokidar
.watch(["config.js", "layouts/**/*", "src/**/*"], { ignoreInitial: true })
.on("all", () => {
build().catch((err) => {
console.error("Error during build:", err);
});
});
const staticHandler = serveStatic("target");
const server = http.createServer((req, res) => {
staticHandler(req, res, finalhandler(req, res));
});
const port = process.env.PORT || 3000;
build().then(() => {
server.listen(port, () => {
console.log(`Listening on port ${port}`);
});
});