mirror of
https://github.com/doublespeakgames/adarkroom.git
synced 2026-05-28 00:01:54 +08:00
9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
|
|
import express from 'express';
|
||
|
|
|
||
|
|
const PORT = 8080;
|
||
|
|
|
||
|
|
const app = express();
|
||
|
|
app.use(express.static('.'));
|
||
|
|
|
||
|
|
app.listen(PORT, () => console.log(`Listening on port ${PORT}`));
|