Puppeteer Chromium Resolver
Tool to resolve puppeteer and chromium faster, detect local installed chromium, download chromium with custom mirror host, cache chromium revision out of node_modules, test chromium headless being launchable.
- Tool to customize puppeteer
- Detect local chromium automatically
- Download chromium from custom mirror host
- Cache chromium to custom local folder
- Try launching chromium and resolve launchable and version
- Resolve chromium executablePath and puppeteer
Install
npm i puppeteer-chromium-resolver
Usage
[Async] dynamic detection and downloading chromium
const PCR = require("puppeteer-chromium-resolver");
const options = {};
const stats = await PCR(options);
const browser = await stats.puppeteer.launch({
headless: false,
args: ["--no-sandbox"],
executablePath: stats.executablePath
}).catch(function(error) {
console.log(error);
});
const page = await browser.newPage();
await page.goto("https://www.npmjs.com/package/puppeteer-chromium-resolver");
await browser.close();
[Sync] chromium will be pre-downloaded when PCR installation, so calling getStats() will get PCR stats from previous installation.
const PCR = require("puppeteer-chromium-resolver");
const options = {};
const stats = PCR.getStats(options);
if (stats) {
stats.puppeteer.launch({
headless: false,
args: ["--no-sandbox"],
executablePath: stats.executablePath
}).then(function(browser){
}).catch(function(error) {
console.log(error);
});
}
Default Options
const options = {
revision: '',
detectionPath: '',
downloadPath: '',
folderName: '.chromium-browser-snapshots',
statsName: '.pcr-stats.json',
hosts: [],
cacheRevisions: 2,
retry: 3,
silent: false
};
see lib/options.js
Option from root package.json with "pcr" object
{
"pcr": {
"revision": "869685"
}
}
Return Stats
Property | Type | |
---|
revision | String | current chromium revision |
executablePath | String | chromium executable path |
folderPath | String | chromium folder path |
local | Boolean | exists local chromium |
url | String | chromium download url |
chromiumVersion | String | chromium version |
launchable | Boolean | chromium launchable |
puppeteerVersion | String | puppeteer version |
puppeteer | Object | puppeteer module |
Test Cases
see test/test.js
How to make puppeteer work with puppeteer-chromium-resolver
- 1, Sets env PUPPETEER_SKIP_DOWNLOAD to skip download Chromium when installation (.npmrc)
PUPPETEER_SKIP_DOWNLOAD=true
- 2, Sets env PUPPETEER_EXECUTABLE_PATH to PCR executablePath globally or pass in launch option executablePath
(async () => {
const PCR = require("puppeteer-chromium-resolver");
const puppeteer = require("puppeteer");
const stats = await PCR({});
process.env.PUPPETEER_EXECUTABLE_PATH = stats.executablePath;
const browser = await puppeteer.launch({
executablePath: stats.executablePath,
headless: false
});
})();
Troubleshooting
- CentOS: error while loading shared libraries: libatk-1.0.so.0: cannot open shared objecsuch file or directory
yum install -y alsa-lib.x86_64 \
atk.x86_64 \
cups-libs.x86_64 \
gtk3.x86_64 \
ipa-gothic-fonts \
libXcomposite.x86_64 \
libXcursor.x86_64 \
libXdamage.x86_64 \
libXext.x86_64 \
libXi.x86_64 \
libXrandr.x86_64 \
libXScrnSaver.x86_64 \
libXtst.x86_64 \
pango.x86_64 \
xorg-x11-fonts-100dpi \
xorg-x11-fonts-75dpi \
xorg-x11-fonts-cyrillic \
xorg-x11-fonts-misc \
xorg-x11-fonts-Type1 \
xorg-x11-utils
yum update nss -y
- Debian (e.g. Ubuntu): error while loading shared libraries: libgobject-2.0.so.0: cannot open shared object file: No such file or directory
sudo apt-get install -y ca-certificates fonts-liberation libasound2 libatk-bridge2.0-0 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 libgcc1 libglib2.0-0 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 lsb-release wget xdg-utils
more https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md
Dependencies
nmls -p
┌───────────────────────────────┬─────────┬─────────┬──────┬───────────┬────────┐
│ Name │ Version │ Size │ Deps │ Deps Size │ Nested │
├───────────────────────────────┼─────────┼─────────┼──────┼───────────┼────────┤
│ └ puppeteer-chromium-resolver │ 19.3.0 │ 27.4 KB │ 56 │ 12.6 MB │ 0 │
│ └ dependencies │ │ │ │ │ │
│ ├ eight-colors │ 1.0.3 │ 14.9 KB │ 0 │ 0 B │ 0 │
│ ├ gauge │ 5.0.0 │ 42.1 KB │ 11 │ 113.1 KB │ 0 │
│ └ puppeteer-core │ 19.8.0 │ 3.94 MB │ 42 │ 8.51 MB │ 0 │
└───────────────────────────────┴─────────┴─────────┴──────┴───────────┴────────┘
CHANGELOG
CHANGELOG.md