From bca46686e3c7bddefa0ba34320ef604602df3e13 Mon Sep 17 00:00:00 2001 From: Ashutosh Mulky Date: Tue, 7 Dec 2021 18:51:19 +0530 Subject: [PATCH 1/2] null --- 1-getting-started/1-executing-scripts/1-hello-world.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/1-getting-started/1-executing-scripts/1-hello-world.js b/1-getting-started/1-executing-scripts/1-hello-world.js index e0060ac..141e97a 100755 --- a/1-getting-started/1-executing-scripts/1-hello-world.js +++ b/1-getting-started/1-executing-scripts/1-hello-world.js @@ -4,6 +4,7 @@ const server = http.createServer((req, res) => { res.end('Hello World\n'); }); + server.listen(4242, () => { - console.log('Server is running...'); + console.log('Server is running....'); }); From 66884279c57369e4b0851c5c9af108829f783e77 Mon Sep 17 00:00:00 2001 From: Ashutosh Mulky Date: Tue, 7 Dec 2021 18:52:19 +0530 Subject: [PATCH 2/2] sad