From 028f82648aa8f0af6942096f05e6ec0bea8c3cd9 Mon Sep 17 00:00:00 2001 From: sarveshsrinath Date: Sat, 26 Oct 2024 14:58:07 +0530 Subject: [PATCH] Changed hello node to hello world --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 54e5fef1f..a4e333b41 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ const port = process.env.PORT || 3000; const server = http.createServer((req, res) => { res.statusCode = 200; - const msg = 'Hello Node!\n' + const msg = 'Hello World!\n' res.end(msg); });