Using Puppeteer with a proxy

Sample code here This shows how to use Puppeteer with a proxy using both Luminati and Proxycrawl. Video guide: Luminati is a more intense solution that requires a bit more to get set up. They even do a business verification before they’ll allow you to use some of their features.

Read More »

Jordan Parses Large CSVs

Demo code here First attempt When dealing with large files they have to be read in a stream. It’s just too much to load 18gb into the buffer. Node’s fs.createReadStream works amazing for this. This is a basic parse function without the rows being too large. I used csv-parser which

Read More »