This commit is contained in:
Anuj Sahu 2026-03-16 20:43:58 +05:30
parent 025b86bb18
commit 387c3cc031

2
app.js
View File

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