const http = require('http'); const options = { hostname: 'localhost', port: 3010, path: '/claude/ide', method: 'GET', headers: { 'Cookie': 'connect.sid=s' // Add dummy session to test } }; const req = http.request(options, (res) => { console.log('Status:', res.statusCode); console.log('Headers:', JSON.stringify(res.headers, null, 2)); let data = ''; res.on('data', (chunk) => { data += chunk; }); res.on('end', () => { // Check if any script tags have cache-busting parameters const scripts = data.match(/ { console.log(' ', script); if (script.includes('?v=')) { console.log(' ✓ Has cache-busting parameter!'); } else { console.log(' ✗ Missing cache-busting parameter'); } }); } }); }); req.on('error', (e) => { console.error('Error:', e.message); }); req.end();