mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-15 23:32:49 +00:00
67 lines
2 KiB
JavaScript
67 lines
2 KiB
JavaScript
import { createReadStream, existsSync } from 'node:fs';
|
|
import { stat } from 'node:fs/promises';
|
|
import { createServer } from 'node:http';
|
|
import { extname, join, normalize } from 'node:path';
|
|
|
|
const host = '0.0.0.0';
|
|
const port = Number(process.env.PORT || '4173');
|
|
const root = join(process.cwd(), 'dist');
|
|
|
|
const contentTypes = {
|
|
'.css': 'text/css; charset=utf-8',
|
|
'.html': 'text/html; charset=utf-8',
|
|
'.js': 'text/javascript; charset=utf-8',
|
|
'.json': 'application/json; charset=utf-8',
|
|
'.map': 'application/json; charset=utf-8',
|
|
'.png': 'image/png',
|
|
'.svg': 'image/svg+xml',
|
|
'.txt': 'text/plain; charset=utf-8',
|
|
'.woff': 'font/woff',
|
|
'.woff2': 'font/woff2',
|
|
};
|
|
|
|
function resolvePath(urlPath) {
|
|
const cleanPath = normalize(decodeURIComponent(urlPath).replace(/^\/+/, ''));
|
|
const candidate = join(root, cleanPath);
|
|
if (!candidate.startsWith(root)) return null;
|
|
return candidate;
|
|
}
|
|
|
|
const server = createServer(async (req, res) => {
|
|
const requestPath = req.url?.split('?')[0] || '/';
|
|
let filePath = resolvePath(requestPath);
|
|
|
|
if (!filePath) {
|
|
res.writeHead(400);
|
|
res.end('Bad request');
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const fileStat = await stat(filePath).catch(() => null);
|
|
if (fileStat?.isDirectory()) {
|
|
filePath = join(filePath, 'index.html');
|
|
} else if (!fileStat?.isFile()) {
|
|
filePath = join(root, 'index.html');
|
|
}
|
|
|
|
if (!existsSync(filePath)) {
|
|
res.writeHead(404);
|
|
res.end('Not found');
|
|
return;
|
|
}
|
|
|
|
res.writeHead(200, {
|
|
'Cache-Control': filePath.includes('/assets/') ? 'public, max-age=31536000, immutable' : 'no-cache',
|
|
'Content-Type': contentTypes[extname(filePath)] || 'application/octet-stream',
|
|
});
|
|
createReadStream(filePath).pipe(res);
|
|
} catch (error) {
|
|
res.writeHead(500);
|
|
res.end(error instanceof Error ? error.message : 'Internal server error');
|
|
}
|
|
});
|
|
|
|
server.listen(port, host, () => {
|
|
console.log(`gitnexus-web listening on http://${host}:${port}`);
|
|
});
|