const http = require('http'); const server = http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('🚀 New Deployment: Hello vipin.This is Jenkins + newly updated Minikube pipeline!\n'); }); const PORT = 3000; server.listen(PORT, () => { console.log(`✅ Server running on port ${PORT}`); });