49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
const http = require('http');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const PORT = 8777;
|
|
const ROOT = path.join(__dirname, 'publish_release', 'wwwroot');
|
|
|
|
const MIME = {
|
|
'.html': 'text/html',
|
|
'.js': 'application/javascript',
|
|
'.wasm': 'application/wasm',
|
|
'.dll': 'application/octet-stream',
|
|
'.css': 'text/css',
|
|
'.png': 'image/png',
|
|
'.jpg': 'image/jpeg',
|
|
'.svg': 'image/svg+xml',
|
|
'.ico': 'image/x-icon',
|
|
'.json': 'application/json',
|
|
'.br': 'application/octet-stream',
|
|
'.gz': 'application/gzip',
|
|
};
|
|
|
|
const server = http.createServer((req, res) => {
|
|
let filePath = path.join(ROOT, req.url === '/' ? 'index.html' : req.url);
|
|
const ext = path.extname(filePath);
|
|
|
|
fs.readFile(filePath, (err, data) => {
|
|
if (err) {
|
|
// SPA fallback: serve index.html for non-file routes
|
|
fs.readFile(path.join(ROOT, 'index.html'), (err2, data2) => {
|
|
if (err2) {
|
|
res.writeHead(404);
|
|
res.end('Not found');
|
|
return;
|
|
}
|
|
res.writeHead(200, { 'Content-Type': 'text/html' });
|
|
res.end(data2);
|
|
});
|
|
return;
|
|
}
|
|
res.writeHead(200, { 'Content-Type': MIME[ext] || 'application/octet-stream' });
|
|
res.end(data);
|
|
});
|
|
});
|
|
|
|
server.listen(PORT, () => {
|
|
console.log(`Serving IGP publish on http://localhost:${PORT}`);
|
|
});
|