From ba5d9712b11284da033729e96991d1d9f5d143c6 Mon Sep 17 00:00:00 2001 From: vish-cell <141856499+vish-cell@users.noreply.github.com> Date: Thu, 1 Feb 2024 11:13:43 +0530 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..d99d45189 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 vishal')); app.listen(port); console.log(`App running on http://localhost:${port}`);