mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-01-10 00:06:51 +01:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import express from 'express';
|
|
const app = express();
|
|
const PORT = 8000;
|
|
|
|
// server-node: backend api
|
|
import api from './src/routes/api/api-controller';
|
|
app.use("/api/", api);
|
|
|
|
// serve
|
|
app.listen(PORT, () => {
|
|
console.log(`http://localhost:${PORT}`);
|
|
}); |