Files
HushMap/website/server/app.ts
T
2026-04-11 23:22:19 +00:00

10 lines
276 B
TypeScript

import { createServer } from 'node:http';
import { handler } from '../build/handler.js';
const port = process.env.PORT || 3000;
const server = createServer(handler as any);
server.listen(port, () => {
console.log(`Bun Server is listening on http://localhost:${port}`);
});