This commit is contained in:
Anuj Sahu 2026-03-23 13:42:23 +05:30
parent b5d6a6a5d1
commit 6ffbc0c20d

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'); res.end('8thhh updateee Hello World');
} else { } else {
res.writeHead(404, { 'Content-Type': 'text/plain' }); res.writeHead(404, { 'Content-Type': 'text/plain' });
res.end('Not Found'); res.end('Not Found');