const http = require('http'); const fs = require('fs'); const path = require('path'); const PORT = 8080; const server = http.createServer((req, res) => { console.log(`Request: ${req.method} ${req.url}`); if (req.url === '/' || req.url === '/chat') { const filePath = path.join(__dirname, 'test-page.html'); fs.readFile(filePath, 'utf8', (err, content) => { if (err) { res.writeHead(500); res.end('Error loading page'); return; } res.writeHead(200, { 'Content-Type': 'text/html' }); res.end(content); }); } else { res.writeHead(404); res.end('Not found'); } }); server.listen(PORT, () => { console.log(`Test server running at http://localhost:${PORT}`); console.log('Open this URL in Chrome to test the authenticated session'); });