mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 04:24:49 +00:00
12 lines
268 B
JavaScript
Executable File
12 lines
268 B
JavaScript
Executable File
import express from 'express';
|
|
import path from 'path';
|
|
|
|
const app = express();
|
|
const port = process.env.PORT || 3000;
|
|
|
|
app.use(express.static(path.join(import.meta.dirname, 'public')));
|
|
|
|
app.listen(port, () => {
|
|
console.log(`Server is running on port ${port}`);
|
|
});
|