fix: fix ApplicationProtocolVersion type definition
[e-mobility-charging-stations-simulator.git] / ui / web / start.js
index 99a794d5af59c699674895225e03bf921bfa192b..3eb2838e8925cb1b38e872695e66162c97883607 100644 (file)
@@ -2,17 +2,16 @@ 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 != null
-const PORT = isCFEnvironment ? parseInt(env.PORT) : 3030
+const PORT = isCFEnvironment ? Number.parseInt(env.PORT) : 3030
 const uiPath = join(dirname(fileURLToPath(import.meta.url)), './dist')
 
 const serve = serveStatic(uiPath)
 
-const server = createServer(function onRequest(req, res) {
-  serve(req, res, finalhandler(req, res))
-})
+const server = createServer((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}`))