docs: add JSDoc and normalize comments across server.

This commit is contained in:
K
2026-05-03 00:16:42 +05:30
parent 33fe20021a
commit f88a45968a
5 changed files with 127 additions and 84 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
/**
* start.js safe server launcher
* start.js - safe server launcher
* Kills any process already on PORT before starting index.js.
* Run with: node web/server/start.js
*/
@@ -24,7 +24,7 @@ function killPort(port) {
execSync(`fuser -k ${port}/tcp`, { stdio: "ignore" });
}
} catch {
// No process on that port fine
// No process on that port -- fine
}
}