From 8722062f4a4adcfa4442e90d234c5791d3687075 Mon Sep 17 00:00:00 2001 From: Michael Wolf Date: Thu, 1 Jan 2026 15:12:01 -0600 Subject: [PATCH] Change process names again --- express/app.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/express/app.ts b/express/app.ts index 1aaa046..1dae9f7 100644 --- a/express/app.ts +++ b/express/app.ts @@ -20,7 +20,8 @@ import { methodParser, } from "./types"; -process.title = "express-diachron-app"; + + const app = express(); @@ -120,6 +121,8 @@ app.use(async (req: ExpressRequest, res: ExpressResponse) => { res.status(code).send(result); }); +process.title = `diachron:${cli.listen.port}`; + app.listen(cli.listen.port, cli.listen.host, () => { console.log(`Listening on ${cli.listen.host}:${cli.listen.port}`); });