Skip to content

Instantly share code, notes, and snippets.

@gera2ld
Created August 1, 2020 09:08
Show Gist options
  • Save gera2ld/b23d46e5fbb539e91ec601f8b0ab2513 to your computer and use it in GitHub Desktop.
Save gera2ld/b23d46e5fbb539e91ec601f8b0ab2513 to your computer and use it in GitHub Desktop.
Create PDF from HTML via Puppeteer
const fsPromises = require('fs').promises;
const puppeteer = require('puppeteer');
async function main() {
const browser = await puppeteer.launch({
headless: true,
args: ['--proxy-server=socks5://127.0.0.1:2020'],
});
const page = await browser.newPage();
await page.goto('https://gera2ld.space', { waitUntil: 'networkidle0' });
const pdf = await page.pdf({ format: 'A4' });
await fsPromises.writeFile('output.pdf', pdf);
await browser.close();
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment