update/app initialization

This commit is contained in:
SowinskiBraeden committed 2025-04-28 13:30:17 -07:00
1 parent 98c14d47d7
commit efeae30d19
1 file changed
+9
+9
View File
@@ -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}`);
});