chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / ui / web / start.js
index 39cdf0f446d338a700f2f22763ff2193b3d2187f..03141953b56553a7dff0e2d8ac89a91ebf285e99 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 !== undefined
+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(`App running at: http://localhost:${PORT}`))