{"id":19307111,"url":"https://github.com/thandon263/puppeteer","last_synced_at":"2026-05-04T21:31:25.493Z","repository":{"id":97055610,"uuid":"140891478","full_name":"thandon263/puppeteer","owner":"thandon263","description":"This sample application demonstrates how to use Headless Chrome via the Puppeteer module to take screenshots of webpages on Google App Engine Node.js standard environment.  Firebase \u003c=\u003e NodeJS \u003c=\u003e Google App Engine \u003c=\u003e Firebase","archived":false,"fork":false,"pushed_at":"2019-02-01T14:44:31.000Z","size":76,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-06T00:06:28.646Z","etag":null,"topics":["es2018","javascript","nodejs","nodejs-server-api","puppeteer","search-engine"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/thandon263.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}},"created_at":"2018-07-13T20:45:19.000Z","updated_at":"2019-07-29T09:13:34.000Z","dependencies_parsed_at":"2023-03-23T15:49:16.114Z","dependency_job_id":null,"html_url":"https://github.com/thandon263/puppeteer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thandon263/puppeteer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thandon263%2Fpuppeteer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thandon263%2Fpuppeteer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thandon263%2Fpuppeteer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thandon263%2Fpuppeteer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thandon263","download_url":"https://codeload.github.com/thandon263/puppeteer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thandon263%2Fpuppeteer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32625906,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["es2018","javascript","nodejs","nodejs-server-api","puppeteer","search-engine"],"created_at":"2024-11-10T00:09:41.898Z","updated_at":"2026-05-04T21:31:25.477Z","avatar_url":"https://github.com/thandon263.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Headless Chrome on Google App Engine\n\nThis sample application demonstrates how to use Headless Chrome via the [Puppeteer](https://developers.google.com/web/tools/puppeteer/) module to take screenshots of webpages on [Google App Engine](https://cloud.google.com/appengine) Node.js [standard environment](https://cloud.google.com/appengine/docs/standard/nodejs).\n\n## Running and deploying\n\nRefer to the [appengine/README.md](../README.md) file for instructions on running and deploying.\n\n---\n\n## Hotel Price and Room Search\n\nThis application is mainly developed to help search for Hotels and book the best room with lowest price on the listing. There is a lot more depending on application,you can send to the database. \n\n```javascript \n    \n    ...\n        var database = firebase.database();\n\n        // [START browser]\n        const browser = await puppeteer.launch({\n            args: ['--no-sandbox'],\n            headless: true\n        });\n        // [END browser]\n        const page = await browser.newPage();\n        await page.setViewport({\n            width: 1000,\n            height: 900\n        });\n    ...\n  \n``` \nYou have a browser instance that runs on the server and it's termed Headless because you don't get to see the `Chrome browser` but it will be gathering data on the background. \n\nYou have to close the browser when you are done with the search, to reduce service costs on Google App Engine.\n\n```JavaScript\n    ...\n        \n     await browser.close();\n\n    ...\n```\n\n---\n### The Writer\nLegend_of_theHeroGenius","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthandon263%2Fpuppeteer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthandon263%2Fpuppeteer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthandon263%2Fpuppeteer/lists"}