From 2a1a13e39dac848490b8359c9f88612d6c148a4a Mon Sep 17 00:00:00 2001 From: Rishi Suthar Date: Sun, 21 Jul 2024 14:28:15 -0400 Subject: [PATCH] first commit --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 541532ebe..a15185907 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 AWS!')); app.listen(port); console.log(`App running on http://localhost:${port}`);