const http = require('http'); const server = http.createServer((req, res) => { if (req.url === '/api/time') { res.writeHead(200, { 'Content-Type': 'application/json' }); res.end(JSON.stringify({ time: new Date().toISOString() })); return; } res.writeHead(200, { 'Content-Type': 'text/html' }); res.end(` <body style="font-family:system-ui;padding:2rem;background:#f8f9fa"> <h1>Hello from the browser!

