From 5857d0a4ffad957824ffef2e6c9739582a4d1dde Mon Sep 17 00:00:00 2001 From: 21mh1a04j8 <99387124+21mh1a04j8@users.noreply.github.com> Date: Sun, 17 Mar 2024 03:27:28 +0530 Subject: [PATCH] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index fbbd40f98..a756aea2a 100644 --- a/index.js +++ b/index.js @@ -2,6 +2,6 @@ var http = require('http'); //create a server object: http.createServer(function (req, res) { - res.write('A Monk in Cloud'); //write a response to the client + res.write('REACT ROYALS'); //write a response to the client res.end(); //end the response }).listen(80); //the server object listens on port 80