Stirling-PDF/server-node/index.js
Saud Fatayerji 29b633d7b4 bug fix
2023-10-27 00:01:04 +03:00

22 lines
473 B
JavaScript

import operations from './routes/api/operations.js';
import express from 'express';
const app = express();
const PORT = 8080;
// Static Middleware
app.use(express.static('./public'));
app.get('/', function (req, res, next) { // TODO: Use EJS?
res.render('home.ejs');
});
app.use("/api/operations", operations);
//app.use("/api/workflow", workflow);
app.listen(PORT, function (err) {
if (err) console.log(err);
console.log(`http://localhost:${PORT}`);
});