Files
martinfencl.eu/adf/server.js
2024-01-02 12:56:43 +01:00

12 lines
252 B
JavaScript

const express = require('express');
const path = require('path');
const app = express();
const port = 3000;
app.use(express.static(path.join(__dirname, '')));
app.listen(port, () => {
console.log(`Server běží na http://localhost:${port}`);
});