import { CheerioCrawler, ProxyConfiguration } from 'crawlee'; const proxyConfiguration = new ProxyConfiguration({ /* opts */ }); const crawler = new CheerioCrawler({ proxyConfiguration, async requestHandler({ proxyInfo }) { console.log(proxyInfo); }, // ... });