I want to use apify proxy configuration from local app.

I'm trying scrape some website using puppeteerCrawler from my local machine I want to configure apify proxy for this project how do I use it. right now my code looks like this
import {Actor} from 'apify'
await Actor.init();
const proxyConfiguration = await Actor.createProxyConfiguration({
password: "password"
});
const proxyUrl = await proxyConfiguration.newUrl('my_scraping');
const browser = await launchPuppeteer({ proxyUrl });
Was this page helpful?