apt install -y libglib2.0-dev libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm-dev libpango1.0-0 libasound2 libxshmfence1 libxkbcommon0 libcairo2
apt-get install nodejs npm
但这种方法安装的版本可能偏低,影响后续的包安装。按照下面的链接里的步骤安装https://linuxize.com/post/how-to-install-node-js-on-ubuntu-18.04/#1-installing-nvm-node-version-manager-script
1、curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - # -s参数将不输出错误和进度信息;-L参数会让 HTTP 请求跟随服务器的重定向。curl 默认不跟随重定向。
2、sudo apt-get install -y nodejs
3、node --version # v14.21.1
4、npm --version # 6.14.17
docker pull ghcr.io/puppeteer/puppeteer:latest # pulls the latest
docker pull ghcr.io/puppeteer/puppeteer:16.1.0 # pulls the image that contains Puppeteer v16.1.0
该映像用于在sandbox模式下运行浏览器,因此,运行该映像需要SYS_ADMIN功能。
docker run -i --init --cap-add=SYS_ADMIN --rm ghcr.io/puppeteer/puppeteer:latest node -e "$(cat path/to/script.js)" #path/to/script.js是相对于工作目录的路径
const puppeteer = require('/usr/lib/node_modules/puppeteer');
(async() => {
const browser = await puppeteer.launch({
headless: true,
args: [
'--no-sandbox', // 沙盒模式
'--disable-dev-shm-usage', // 创建临时文件共享内存
'--disable-setuid-sandbox', // uid沙盒
'--disable-gpu', // GPU硬件加速
'--disable-web-security', // 关闭chrome的同源策略
'--no-first-run', // 没有设置首页。在启动的时候,就会打开一个空白页面
'--single-process' // 单进程运行
]
});
const page = await browser.newPage();
await page.goto('百度一下,你就知道', { waitUntil: 'networkidle0'}); //设置 waitUntil: 'networkidle0'选项表示Puppeteer已经导航到页面并结束
await page.screenshot({path: 'example.png'});
await page.pdf({
path: 'example.pdf',
format: 'A4',
});
await browser.close();
})().catch(error => {
console.error(error);
process.exit(1);
});
执行命令node example.js:
const html = `
·
Document
页面Dom
`
const puppeteer = require('/usr/lib/node_modules/puppeteer')
async function printPDF() {
const browser = await puppeteer.launch({
headless: true,
args: [
'--no-sandbox', // 沙盒模式
'--disable-dev-shm-usage', // 创建临时文件共享内存
'--disable-setuid-sandbox', // uid沙盒
'--disable-gpu', // GPU硬件加速
'--disable-web-security', // 关闭chrome的同源策略
'--no-first-run', // 没有设置首页。在启动的时候,就会打开一个空白页面
'--single-process' // 单进程运行
]
});
const page = await browser.newPage()
await page.setContent(html, {waitUntil: 'networkidle0'})
await page.pdf({ path: 'test.pdf', format: 'A4'})
await browser.close()
}
printPDF()
const puppeteer = require('/usr/lib/node_modules/puppeteer');
(async() => {
const browser = await puppeteer.launch({headless: true,args: ['--no-sandbox', '--disable-dev-shm-usage', '--disable-gpu', ' --test-type', '--disable-web-security']});
const page = await browser.newPage();
await page.goto('file:///home/zhang/Desktop/puppeteer_zq/firmware/html/content.html', { waitUntil: 'networkidle0'}); //设置 waitUntil: 'networkidle0'选项表示Puppeteer已经导航到页面并结束
await page.pdf({
path: 'firmware.pdf',
format: 'A4',
printBackground: true // 加这行pdf文件的背景才会显示
});
await browser.close();
})().catch(error => {
console.error(error);
process.exit(1);
});
const puppeteer = require('/usr/lib/node_modules/puppeteer');
(async() => {
const browser = await puppeteer.launch({
headless: true,
args: [
'--no-sandbox', // 沙盒模式
'--disable-dev-shm-usage', // 创建临时文件共享内存
'--disable-gpu', // GPU硬件加速
'--test-type',
'--disable-web-security' // 关闭chrome的同源策略
]
});
const page = await browser.newPage();
await page.goto('file:///home/zhang/Desktop/puppeteer_zq/firmware/html/content.html', { waitUntil: 'networkidle0'}); //设置 waitUntil: 'networkidle0'选项表示Puppeteer已经导航到页面并结束
await page.pdf({
path: 'firmware.pdf',
format: 'A4',
printBackground: true, // 加这行pdf文件的背景才会显示
displayHeaderFooter: false, // 显示页眉和页脚。默认为False
timeout: 0, // 无穷大,不超时
});
await browser.close();
})().catch(error => {
console.error(error);
process.exit(1);
});
执行node json_html_2_pdf.js生成pdf文件。ok