{"id":15013501,"url":"https://github.com/maxnowack/spaceshow","last_synced_at":"2025-07-28T05:34:37.657Z","repository":{"id":57366826,"uuid":"121736246","full_name":"maxnowack/spaceshow","owner":"maxnowack","description":"Wrapper for easily testing meteor apps with puppeteer","archived":false,"fork":false,"pushed_at":"2018-03-20T16:36:36.000Z","size":69,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-22T07:03:17.771Z","etag":null,"topics":["chrome","meteor","node","puppeteer","testing"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxnowack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-16T09:59:48.000Z","updated_at":"2018-09-29T05:05:13.000Z","dependencies_parsed_at":"2022-08-23T19:50:20.360Z","dependency_job_id":null,"html_url":"https://github.com/maxnowack/spaceshow","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/maxnowack/spaceshow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxnowack%2Fspaceshow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxnowack%2Fspaceshow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxnowack%2Fspaceshow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxnowack%2Fspaceshow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxnowack","download_url":"https://codeload.github.com/maxnowack/spaceshow/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxnowack%2Fspaceshow/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266808556,"owners_count":23987450,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"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":["chrome","meteor","node","puppeteer","testing"],"created_at":"2024-09-24T19:44:21.821Z","updated_at":"2025-07-28T05:34:37.630Z","avatar_url":"https://github.com/maxnowack.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# spaceshow [![Build Status](https://travis-ci.org/maxnowack/spaceshow.svg?branch=master)](https://travis-ci.org/maxnowack/spaceshow)\nWrapper for easily testing meteor apps with puppeteer\n\n## Installation\n````bash\n  $ npm install --save spaceshow\n````\n\n## Usage\n````javascript\n  import spaceshow from 'spaceshow';\n\n  const app = await spaceshow({\n    appDir: `${__dirname}/meteor-test-app`, // path to your meteor app (required)\n    port: 3000, // port to run your app. default to 3000\n    settings: '…' // settings JSON string or file relative to app directory\n    args: […], // custom args to pass to meteor command\n    meteorPath: '…', // custom path for running meteor command\n    puppeteerOptions: { … } // custom puppeteer options. see https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#puppeteerlaunchoptions\n    initialGotoOptions: { … } // options for initial goto call (setting a different timeout for example)\n  });\n\n  // for more commands see https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#class-page\n  await page.waitForSelector('h1');\n  const html = await page.evaluate(() =\u003e document.querySelector('h1').innerHTML);\n\n  console.log(html);\n\n  await page.close();\n````\n\nIf you want more control over the whole process, you can also instantiate spaceshow by yourself\n````javascript\n  import { Spaceshow } from 'spaceshow';\n\n  const show = new Spaceshow({\n    // options like in the example above\n  });\n\n  // log meteor output\n  show.on('stdout', (data) =\u003e {\n    console.log(data);\n  });\n  show.on('stderr', (data) =\u003e {\n    console.error(data);\n  });\n\n  const app = await show.start();\n\n  // …\n````\n\n## License\nLicensed under MIT license. Copyright (c) 2018 Max Nowack\n\n## Contributions\nContributions are welcome. Please open issues and/or file Pull Requests.\n\n## Maintainers\n- Max Nowack ([maxnowack](https://github.com/maxnowack))\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxnowack%2Fspaceshow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxnowack%2Fspaceshow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxnowack%2Fspaceshow/lists"}