forked from git/git-scm.com
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathserve-public.js
executable file
·67 lines (60 loc) · 2.11 KB
/
serve-public.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
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env node
const http = require('http');
const url = require('url');
const fs = require('fs');
const path = require('path');
const basePath = path.join(__dirname, '..', 'public');
const mimeTypes = {
"html": "text/html",
"jpeg": "image/jpeg",
"jpg": "image/jpeg",
"png": "image/png",
"svg": "image/svg+xml",
"ico": "image/x-icon",
"js": "text/javascript",
"css": "text/css",
"json": "application/json",
'pf_filter': 'application/gzip',
'pf_fragment': 'application/gzip',
'pf_index': 'application/gzip',
'pf_meta': 'application/gzip',
'pagefind': 'application/gzip',
};
const handler = (request, response) => {
const pathname = decodeURIComponent(url.parse(request.url).pathname);
let filename = path.join(
basePath,
pathname === "/"
? "index.html"
: pathname.endsWith("/")
? `${pathname}index.html`
: pathname
);
let stats = fs.statSync(filename, { throwIfNoEntry: false });
if (!stats?.isFile() && !filename.match(/\.[A-Za-z0-9]{1,11}$/)) {
filename += ".html";
stats = fs.statSync(filename, { throwIfNoEntry: false });
}
try{
if (!stats?.isFile()) throw new Error(`Not a file: ${filename}`);
const fileStream = fs.createReadStream(filename);
let mimeType = mimeTypes[path.extname(filename).split(".")[1]];
if (!mimeType) throw new Error(`Could not get mime type for '${filename}'`)
response.writeHead(200, {'Content-Type':mimeType});
fileStream.pipe(response);
} catch(e) {
console.log(`Could not read ${filename}`);
response.writeHead(404, {'Content-Type': 'text/html'});
// insert <base> to fix styling
const html = fs.readFileSync(path.join(basePath, '404.html'), 'utf-8')
.replace(/<head>/, '\n <base href="/" />')
response.write(html)
response.end()
return;
}
};
const server = http.createServer(handler);
server.on("listening", () => {
console.log(`Now listening on: http://localhost:${server.address().port}/`);
});
server.listen(5000);