const http = require('http'); const options = { hostname: 'localhost', port: 3010, path: '/claude/', method: 'GET' }; const req = http.request(options, (res) => { console.log('Status:', res.statusCode); console.log('Content-Type:', res.headers['content-type']); console.log('Cache-Control:', res.headers['cache-control']); 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'); } }); } else { console.log('\nNo script tags found in HTML'); } }); }); req.on('error', (e) => { console.error('Error:', e.message); }); req.end();