mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-01-23 00:06:08 +01:00
97e4eab7bb
Split express into different ports for easier migration Typed page ops that had warnings
13 lines
289 B
JavaScript
13 lines
289 B
JavaScript
import express from 'express';
|
|
const app = express();
|
|
const PORT = 8080;
|
|
|
|
// server-node: backend api
|
|
import api from './routes/api/index.js';
|
|
app.use("/api/", api);
|
|
|
|
// serve
|
|
app.listen(PORT, function (err) {
|
|
if (err) console.log(err);
|
|
console.log(`http://localhost:${PORT}`);
|
|
}); |