Hacker News new | ask | show | jobs
by dananjaya86 2810 days ago
How is it different from, let's say:

chrome --headless --disable-gpu --print-to-pdf https://www.google.com/

3 comments

--print-to-pdf is very limited.

As soon as you need to control anything, you have to use [Puppeteer](https://developers.google.com/web/tools/puppeteer/)

As @cronopios mentions, if you need a bit of flexibility in the output, you need to use a wrapper over Chromium — either Electron, or (the more recent) Puppeteer.

Other than that, it runs the article through Readability to extract just the main content and applies customizable CSS / HTML to it.

It uses puppeteer so basically it's chrome under the hood.