From da63a0a85b9ecf9fee9b12cc4b82c210222d908c Mon Sep 17 00:00:00 2001 From: icesi-ops <59986692+icesi-ops@users.noreply.github.com> Date: Wed, 24 Apr 2024 16:41:13 -0500 Subject: [PATCH] Update index.js --- hello-world-nodejs/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hello-world-nodejs/index.js b/hello-world-nodejs/index.js index 3d23b49..23c1f8d 100755 --- a/hello-world-nodejs/index.js +++ b/hello-world-nodejs/index.js @@ -3,7 +3,7 @@ const process = require('process'); var expressapp = express() expressapp.get('/', function (req, res) { - res.send('{"message":"Hello World JavaScript v1"}') + res.send('{"message":"Hello World JavaScript v1.0.1"}') }) expressapp.listen(5000, function () { console.log('Ready on port 5000!') @@ -12,4 +12,4 @@ expressapp.listen(5000, function () { /* To Handle Ctrl C*/ process.on('SIGINT', function () { process.exit(); -}); \ No newline at end of file +});