22 lines
567 B
TypeScript
22 lines
567 B
TypeScript
import { json, urlencoded } from "body-parser";
|
|
import express, { type Express } from "express";
|
|
import morgan from "morgan";
|
|
import cors from "cors";
|
|
|
|
export const createServer = (): Express => {
|
|
const app = express();
|
|
app
|
|
.disable("x-powered-by")
|
|
.use(morgan("dev"))
|
|
.use(urlencoded({ extended: true }))
|
|
.use(json())
|
|
.use(cors())
|
|
.get("/message/:name", (req, res) => {
|
|
return res.json({ message: `hello ${req.params.name}` });
|
|
})
|
|
.get("/status", (_, res) => {
|
|
return res.json({ ok: true });
|
|
});
|
|
|
|
return app;
|
|
};
|