Stirling-PDF/index.js

21 lines
476 B
JavaScript
Raw Normal View History

2023-10-16 23:11:33 +02:00
import api from './server-node/routes/api/index.js';
2023-10-19 19:46:23 +02:00
import express from 'express';
2023-10-16 23:11:33 +02:00
const app = express();
const PORT = 8080;
// Static Middleware
app.use(express.static('./client-vanilla'));
app.use(express.static('./shared-operations'));
2023-10-16 23:11:33 +02:00
app.get('/', function (req, res, next) { // TODO: Use EJS?
2023-10-16 23:11:33 +02:00
res.render('home.ejs');
});
2023-10-19 19:46:23 +02:00
app.use("/api/", api);
2023-10-16 23:11:33 +02:00
app.listen(PORT, function (err) {
if (err) console.log(err);
console.log(`http://localhost:${PORT}`);
});