changesssd

This commit is contained in:
Abhishek Test Tiwari 2026-03-17 14:42:44 +05:30
parent 51ea066693
commit 7126a119b8

2
app.js
View File

@ -5,7 +5,7 @@ const PORT = 8080;
const server = http.createServer((req, res) => { const server = http.createServer((req, res) => {
if (req.method === "GET" && req.url === "/") { if (req.method === "GET" && req.url === "/") {
res.writeHead(200, { "Content-Type": "text/plain" }); res.writeHead(200, { "Content-Type": "text/plain" });
res.end("7thhh updateee Hello World test"); res.end("7thhh updateee Hello World test new update");
} else { } else {
res.writeHead(404, { "Content-Type": "text/plain" }); res.writeHead(404, { "Content-Type": "text/plain" });
res.end("Not Found"); res.end("Not Found");