From 22c651365acbcd343ccc2a0eb94a60f922c4b168 Mon Sep 17 00:00:00 2001 From: bdane74 <144581278+bdane74@users.noreply.github.com> Date: Sun, 30 Jun 2024 11:26:43 +0530 Subject: [PATCH] Update app.js 5th line changes --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 541532ebe..ae579ae05 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 Delson!')); app.listen(port); console.log(`App running on http://localhost:${port}`);