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}`));
|