From 9425cdc49f23558334e47eac1125d50fc3e2795b Mon Sep 17 00:00:00 2001 From: danieltoure Date: Thu, 18 Jul 2024 20:05:29 +0100 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..1356c0716 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('Hello Universe!')); app.listen(port); console.log(`App running on http://localhost:${port}`);