From 148f8e604c8343ee736aed18ae4994e4764c9252 Mon Sep 17 00:00:00 2001 From: newbieinthecloud <161815758+newbieinthecloud@users.noreply.github.com> Date: Fri, 1 Mar 2024 09:58:56 +0100 Subject: [PATCH 1/3] Update app.js --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 541532ebe..7edf892ae 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('testing')); app.listen(port); console.log(`App running on http://localhost:${port}`); From b6efbfd21ce88be9de586e69720e65a3821319dd Mon Sep 17 00:00:00 2001 From: newbieinthecloud <161815758+newbieinthecloud@users.noreply.github.com> Date: Fri, 1 Mar 2024 10:09:52 +0100 Subject: [PATCH 2/3] Update app.js --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 7edf892ae..faf70003e 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('testing')); +app.get('/', (req, res) => res.send('Eugenia')); app.listen(port); console.log(`App running on http://localhost:${port}`); From f7cfa6a94b13a1c557c3a11249a8e826ea50acf7 Mon Sep 17 00:00:00 2001 From: newbieinthecloud <161815758+newbieinthecloud@users.noreply.github.com> Date: Fri, 1 Mar 2024 10:10:44 +0100 Subject: [PATCH 3/3] Update app.js --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index faf70003e..76bc9712c 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('Eugenia')); +app.get('/', (req, res) => res.send('Hello Madrid')); app.listen(port); console.log(`App running on http://localhost:${port}`);