Created
August 1, 2020 09:08
-
-
Save gera2ld/b23d46e5fbb539e91ec601f8b0ab2513 to your computer and use it in GitHub Desktop.
Create PDF from HTML via Puppeteer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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