import { createServer } from "http" import Express from "express" import { SERVER_PORT } from "./app.config" // get current host id const hostId = `${require("os").hostname()}#${process.pid}` const app = Express() const httpServer = createServer(app) console.log( `Application server running on: ${hostId} at port: ${SERVER_PORT} and started at: ${Date()}` ) httpServer.listen(SERVER_PORT) app.get("/", (req, res) => { res.type("json") res.send({ message: `Instance id: ${hostId}`, status: "OK", }) })