mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-22 15:35:03 +00:00
19 lines
452 B
TypeScript
19 lines
452 B
TypeScript
import "@stirling-pdf/shared-operations/src/i18next.config";
|
|
|
|
import express from "express";
|
|
const app = express();
|
|
const PORT = 8000;
|
|
|
|
// server-node: backend api
|
|
import api from "./routes/api/api-controller";
|
|
app.use("/api", api);
|
|
|
|
// serve
|
|
app.listen(PORT, () => {
|
|
console.log(`http://localhost:${PORT}`);
|
|
});
|
|
|
|
process.on('unhandledRejection', (reason, promise) => {
|
|
console.error('Unhandled Rejection at:', promise, 'reason:', reason);
|
|
});
|