We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Connect to non-standard endpoints instead of localhost:9222.
localhost:9222
const CDP = require('chrome-remote-interface'); const options = { host: '10.0.0.1', port: 1337 }; CDP(options, (client) => { console.log('Connected!'); client.close(); }).on('error', (err) => { console.error(err); });