Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fauzaanu/puppeteer-server-guide
Meant as a guide explaining how to run puppeteer on a linux server
https://github.com/fauzaanu/puppeteer-server-guide
puppeteer
Last synced: about 1 month ago
JSON representation
Meant as a guide explaining how to run puppeteer on a linux server
- Host: GitHub
- URL: https://github.com/fauzaanu/puppeteer-server-guide
- Owner: fauzaanu
- Created: 2023-03-15T17:03:35.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-15T17:03:39.000Z (almost 2 years ago)
- Last Synced: 2024-03-19T01:01:40.910Z (10 months ago)
- Topics: puppeteer
- Homepage: https://fauzaanu.com
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# HOW TO RUN PUPPETEER ON SERVERS
As a guide for myself and others who may want to run puppeteer on a server, I have created this guide.
1. The packages needed to run puppeteer on a server are:
```
sudo apt-get updatesudo apt-get install -y gconf-service libasound2 libatk1.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 npm
```2. We should add nosandbox to the puppeteer launch options:
```
const browser = await puppeteer.launch
({args: ['--no-sandbox', '--disable-setuid-sandbox']});
```3. If we are running on a non headless run this instead
```
apt install -y gconf-service libasound2 libatk1.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 xvfb x11vnc x11-xkb-utils xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic x11-apps npm
```4. Running in non headless mode
```
xvfb-run --server-args="-screen 0 1024x768x24" node app.mjs
```This guide has not been tested as a launch script yet but these are some of the scripts I have used to run puppeteer on a server which I copy paste from my notion. I just wanted to keep them on github instead for the ease of sharing with others.
I will test this as a server creation script next.