From 98853dc0e8c006002e9fd07a834b61f5f8fae671 Mon Sep 17 00:00:00 2001 From: Bingus_Violet Date: Fri, 19 Jan 2024 18:39:24 -0600 Subject: [PATCH] make webserver --- index.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/index.js b/index.js index e69de29..f21c3a5 100644 --- a/index.js +++ b/index.js @@ -0,0 +1,11 @@ +const express = require('express') + +const PORT = process.env.PORT || 8080 + +var app = express() + + + +app.listen(PORT, () => { + console.log("API is now listening on port 8080!") +}) \ No newline at end of file