From b66ab49f5155d7ea3991b47c3930e91fe2a62e0f Mon Sep 17 00:00:00 2001 From: brunoMelo24 <158861446+brunoMelo24@users.noreply.github.com> Date: Sun, 17 Mar 2024 21:23:08 +0000 Subject: [PATCH] Update 1app.js --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 541532ebe..02d3a6125 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 B World!')); app.listen(port); console.log(`App running on http://localhost:${port}`);