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....'); });