From 0b68cf43155ef19a4d87e7fce01a987bb3a3e220 Mon Sep 17 00:00:00 2001 From: sarahghaury <159906560+sarahghaury@users.noreply.github.com> Date: Thu, 7 Nov 2024 12:26:30 +0500 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..600710cb6 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('Sarah!')); app.listen(port); console.log(`App running on http://localhost:${port}`);