From 0f0c533ef4a1babbded50198e49d16fcfa3e2612 Mon Sep 17 00:00:00 2001 From: aungbohtet <61244978+aungbohtet@users.noreply.github.com> Date: Sat, 6 Apr 2024 21:49:31 +0630 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..687199ad8 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 World-hello-world-hello-world!')); app.listen(port); console.log(`App running on http://localhost:${port}`);