Stirling-PDF/server-node/index.js

13 lines
289 B
JavaScript
Raw Normal View History

import express from 'express';
2023-10-16 23:11:33 +02:00
const app = express();
const PORT = 8080;
2023-10-26 20:53:02 +02:00
2023-11-07 01:45:16 +01:00
// server-node: backend api
import api from './routes/api/index.js';
2023-11-07 01:45:16 +01:00
app.use("/api/", api);
2023-11-07 01:45:16 +01:00
// serve
2023-10-16 23:11:33 +02:00
app.listen(PORT, function (err) {
if (err) console.log(err);
console.log(`http://localhost:${PORT}`);
});