A port of puppeteer running on Deno
My options look as follows: ```ts const browser = await launch({ executablePath: "/usr/bin/chromium-browser", args: [ // Required for Docker version of Puppeteer "--no-sandbox", "--disable-setuid-sandbox", "--headless", "--disable-gpu", // This will write shared memory files into /tmp instead of /dev/shm, // because Docker’s default for /dev/shm is 64MB "--disable-dev-shm-usage", ], }); ``` Bit of a mess to be able to run in Docker with alpine. There may be a better option that I'd be open to haha. Regardless, it seems puppeteer is happy with these options and runs well. However, the types don't support this giving me a false positive type error. I'm guessing it's ChromeOptions that needs to be a bit more flexible? Not sure. What do you think? Thanks for this great module!
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by cryptogohan and has received 2 comments.