Łukasz Walukiewicz
Łukasz Walukiewicz
Slow TCP
So I've decided to see how node-chakracore v6.0.0-pre1 will compare to node-v8 v5.4.0 in generating reports in one of my apps (~500k documents fetched from MongoDB). On average node-chakracore took...
### Minimal, reproducible example ```TypeScript import puppeteer from 'puppeteer'; (async () => { const browser = await puppeteer.launch({ headless: 'new', protocolTimeout: 10000, args: ['--no-sandbox'] }); const pages = await browser.pages();...
I'm trying to add a short text to each page of an existing document. The input document I'm using for testing has 18 pages and after running it through the...