Stirling-PDF/client-vanilla/index.js

13 lines
354 B
JavaScript
Raw Normal View History

import express from 'express';
const app = express();
const PORT = 80;
// Server Frontend TODO: Make this typescript compatible
app.use(express.static('../client-vanilla/public'));
app.use(express.static('../shared-operations'));
// serve
app.listen(PORT, function (err) {
if (err) console.log(err);
console.log(`http://localhost:${PORT}`);
});