This commit is contained in:
Abhishek Test Tiwari 2026-04-29 15:36:14 +05:30
parent d7ba361ac0
commit d8b2849c6c

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("Push code after app builder - testing"); res.end("Push code after app builder -> Test");
} else { } else {
res.writeHead(404, { "Content-Type": "text/plain" }); res.writeHead(404, { "Content-Type": "text/plain" });
res.end("Not Found"); res.end("Not Found");