https://github.com/synergitech/chrome-pdf
Simple Node wrapper around puppeteer (Chrome headless) to generate PDFs and screenshots from the command line
https://github.com/synergitech/chrome-pdf
Last synced: about 1 month ago
JSON representation
Simple Node wrapper around puppeteer (Chrome headless) to generate PDFs and screenshots from the command line
- Host: GitHub
- URL: https://github.com/synergitech/chrome-pdf
- Owner: SynergiTech
- License: mit
- Created: 2018-09-18T09:43:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-02T05:27:06.000Z (almost 5 years ago)
- Last Synced: 2025-03-07T12:02:53.654Z (over 1 year ago)
- Language: JavaScript
- Size: 41 KB
- Stars: 2
- Watchers: 6
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chrome-pdf
[](https://www.npmjs.com/package/chrome-pdf)
## Install
Sorry for the required usage of --unsafe-perm ¯\\\_(ツ)\_/¯
```
npm install -g --unsafe-perm --production chrome-pdf
```
```
apt install gconf-service \
libasound2 \
libatk1.0-0 \
libatk-bridge2.0-0 \
libc6 \
libcairo2 \
libcups2 \
libdbus-1-3 \
libexpat1 \
libfontconfig1 \
libgcc1 \
libgconf-2-4 \
libgdk-pixbuf2.0-0 \
libglib2.0-0 \
libgtk-3-0 \
libnspr4 \
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 \
ca-certificates \
fonts-liberation \
libappindicator1 \
libnss3 \
lsb-release \
xdg-utils \
wget
```
## Usage
Help:
```
chrome-pdf --help
```
Render a site:
```
chrome-pdf pdf --page https://bbc.co.uk --path output.pdf
```
Render HTML:
```
chrome-pdf pdf --content "
chrome-pdf
" --path output.pdf
```
Screenshot a site:
```
chrome-pdf screenshot --page https://bbc.co.uk --path output.png
```
Screenshot a fullpage site:
```
chrome-pdf screenshot --page https://bbc.co.uk --fullPage --path output.png
```