Merge pull request #990 from SAP/dependabot/npm_and_yarn/types/node-20.11.20
[e-mobility-charging-stations-simulator.git] / ui / web / start.js
index 39cdf0f446d338a700f2f22763ff2193b3d2187f..c620c4681ddc5d73fe051ffb5846ca3bbec8b1a9 100644 (file)
@@ -1,18 +1,18 @@
-import { createServer } from 'node:http';
-import { dirname, join } from 'node:path';
-import { env } from 'node:process';
-import { fileURLToPath } from 'node:url';
-import finalhandler from 'finalhandler';
-import serveStatic from 'serve-static';
+import { createServer } from 'node:http'
+import { dirname, join } from 'node:path'
+import { env } from 'node:process'
+import { fileURLToPath } from 'node:url'
+import finalhandler from 'finalhandler'
+import serveStatic from 'serve-static'
 
-const isCFEnvironment = env.VCAP_APPLICATION !== undefined,
-  PORT = isCFEnvironment ? parseInt(env.PORT) : 3030,
-  uiPath = join(dirname(fileURLToPath(import.meta.url)), './dist');
+const isCFEnvironment = env.VCAP_APPLICATION != null
+const PORT = isCFEnvironment ? parseInt(env.PORT) : 3030
+const uiPath = join(dirname(fileURLToPath(import.meta.url)), './dist')
 
-const serve = serveStatic(uiPath);
+const serve = serveStatic(uiPath)
 
 const server = createServer(function onRequest(req, res) {
-  serve(req, res, finalhandler(req, res));
-});
+  serve(req, res, finalhandler(req, res))
+})
 
-server.listen(PORT, () => console.info(`App running at: http://localhost:${PORT}`));
+server.listen(PORT, () => console.info(`Web UI running at: http://localhost:${PORT}`))