{"id":31563396,"url":"https://github.com/fosterg4/install-puppeteer","last_synced_at":"2026-04-19T03:02:38.782Z","repository":{"id":207374365,"uuid":"719090188","full_name":"FosterG4/install-puppeteer","owner":"FosterG4","description":"install-puppeteer","archived":false,"fork":false,"pushed_at":"2023-11-15T13:18:42.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-05T04:59:03.258Z","etag":null,"topics":["nodejs","nvm","puppeteer"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FosterG4.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-15T12:38:50.000Z","updated_at":"2023-11-15T13:14:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"679203da-64c7-4cae-bcb5-95a1708c2f84","html_url":"https://github.com/FosterG4/install-puppeteer","commit_stats":null,"previous_names":["fosterg4/install-puppeteer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/FosterG4/install-puppeteer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FosterG4%2Finstall-puppeteer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FosterG4%2Finstall-puppeteer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FosterG4%2Finstall-puppeteer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FosterG4%2Finstall-puppeteer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FosterG4","download_url":"https://codeload.github.com/FosterG4/install-puppeteer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FosterG4%2Finstall-puppeteer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31992822,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["nodejs","nvm","puppeteer"],"created_at":"2025-10-05T04:58:56.864Z","updated_at":"2026-04-19T03:02:38.770Z","avatar_url":"https://github.com/FosterG4.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"markdown\n\n# install-puppeteer\n\n# if you want install nodejs with nvm\ncomplete doc nvm\nhttps://github.com/nvm-sh/nvm?tab=readme-ov-file#install--update-script\n\n```bash\n# Install NVM\ncurl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash\nor\nwget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash\n\n# Load NVM into the current shell session\nexport NVM_DIR=\"$HOME/.nvm\"\n[ -s \"$NVM_DIR/nvm.sh\" ] \u0026\u0026 \\. \"$NVM_DIR/nvm.sh\"\n\n#list Node.js Version\nnvm ls-remote\n\n# Install Node.js 14.x\nnvm install 14.x.x\n\n# Set Node.js 14.x as the default version\nnvm use 14.x.x\n```\n\n## On CentOS 7/8, Alma Linux 8 \u0026 Rocky Linux 8\n\n```bash\n# Update the system and install dependencies\nsudo yum update -y\n\n# Install curl\nsudo yum install -y curl\n\n# Install Node.js 14.x\nsudo curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash -\nsudo yum install -y nodejs\n\n# Install additional dependencies\nsudo yum install atk java-atk-wrapper at-spi2-atk gtk3 libXt libdrm mesa-libgbm nss libdrm mesa-libgbm\n\n#Navigate to your website root\n\ncd /path/to/your/website\n\n#Install Puppeteer version 17.1.3\n\nsudo npm install --save puppeteer@~17.1.3\n```\n\n## On Ubuntu 18.04, 20.04, 22.04\n\n```bash\n#Update the system and install dependencies\n\nsudo apt-get update\nsudo apt update\n\n# Install curl\nsudo apt install -y curl\n\n# Install Node.js 14.x\nsudo curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -\nsudo apt install -y nodejs\n\n# Install npm\nsudo apt-get install npm\n\n# Install additional dependencies\nsudo apt install -y libgconf-2-4 libatk1.0-0 libatk-bridge2.0-0 libgdk-pixbuf2.0-0 libgtk-3-0 libgbm-dev libnss3-dev libxss-dev\n\n#Navigate to your website root\n\ncd /path/to/your/website\n\n#Install Puppeteer version 17.1.3\n\nsudo npm install --save puppeteer@~17.1.3\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffosterg4%2Finstall-puppeteer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffosterg4%2Finstall-puppeteer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffosterg4%2Finstall-puppeteer/lists"}