From efeae30d19f3a7d1c03e809e395f563c6804b902 Mon Sep 17 00:00:00 2001 From: SowinskiBraeden Date: Mon, 28 Apr 2025 13:30:17 -0700 Subject: [PATCH] update/app initialization --- src/app.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/app.js diff --git a/src/app.js b/src/app.js new file mode 100644 index 0000000..71e5912 --- /dev/null +++ b/src/app.js @@ -0,0 +1,9 @@ +const express = require("express"); +const path = require("path"); + +const app = express(); +const port = 8000; + +app.listen(port, () => { + console.log(`Server listening on port ${port}`); +}); \ No newline at end of file