mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
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}`);
|
|
}); |