From dfe4daf578c49710a15c45a5df915adf79001b9b Mon Sep 17 00:00:00 2001 From: John Dilworth <161086942+jdil7@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:19:35 -0600 Subject: [PATCH] Update app.js --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 541532ebe..b3ce8c79a 100644 --- a/app.js +++ b/app.js @@ -2,7 +2,7 @@ const express = require('express'); const app = express(); const port = 8080; -app.get('/', (req, res) => res.send('Hello World!')); +app.get('/', (req, res) => res.send('Dilworth World!')); app.listen(port); console.log(`App running on http://localhost:${port}`);