{"id":19237249,"url":"https://github.com/epicweb-dev/epicshop","last_synced_at":"2026-04-10T23:16:11.066Z","repository":{"id":65690722,"uuid":"593184777","full_name":"epicweb-dev/epicshop","owner":"epicweb-dev","description":"The workshop app for all workshops on EpicWeb.dev","archived":false,"fork":false,"pushed_at":"2026-02-26T01:07:07.000Z","size":28664,"stargazers_count":239,"open_issues_count":3,"forks_count":36,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-02-26T01:45:46.304Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.epicweb.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/epicweb-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2023-01-25T12:44:34.000Z","updated_at":"2026-02-26T01:04:29.000Z","dependencies_parsed_at":"2023-10-05T02:02:05.654Z","dependency_job_id":"c8d8f75c-c0a5-4603-8cd7-46fdf25fe588","html_url":"https://github.com/epicweb-dev/epicshop","commit_stats":null,"previous_names":["epicweb-dev/workshop-app","epicweb-dev/kcdshop"],"tags_count":810,"template":false,"template_full_name":null,"purl":"pkg:github/epicweb-dev/epicshop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epicweb-dev%2Fepicshop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epicweb-dev%2Fepicshop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epicweb-dev%2Fepicshop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epicweb-dev%2Fepicshop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/epicweb-dev","download_url":"https://codeload.github.com/epicweb-dev/epicshop/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epicweb-dev%2Fepicshop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29961851,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T05:59:08.471Z","status":"ssl_error","status_checked_at":"2026-03-01T05:58:04.208Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2024-11-09T16:25:39.331Z","updated_at":"2026-04-10T23:16:11.053Z","avatar_url":"https://github.com/epicweb-dev.png","language":"TypeScript","readme":"# Epic Workshop (epicshop)\n\nThe **Epic Workshop** app (sometimes referred to as **epicshop**) is the local\nworkshop environment used for EpicWeb.dev workshops. It’s a React Router v7 app\nthat runs on your machine and provides a guided learning experience (exercises,\nsteps, diffs, videos, progress, etc.).\n\nIf you’re here because you want to _run a workshop_, you probably want the\n**`epicshop` CLI**.\n\n## Quick start (learners)\n\n```bash\nnpx epicshop init\n```\n\nThat interactive setup will:\n\n- Choose where to store your workshops\n- Clone and set up the `epicshop-tutorial`\n- Start the workshop app\n\nOnce you’ve added a workshop you can run it from inside the workshop folder:\n\n```bash\nepicshop start\n```\n\n## Packages\n\nThis repository is a monorepo that publishes several npm packages:\n\n- **`epicshop`** (`packages/workshop-cli`): CLI for installing/running/updating\n  workshops.\n- **`@epic-web/workshop-app`** (`packages/workshop-app`): the React Router\n  workshop web app used by the CLI.\n- **`@epic-web/workshop-utils`** (`packages/workshop-utils`): shared utilities\n  used across the ecosystem.\n- **`@epic-web/workshop-presence`** (`packages/workshop-presence`): presence\n  schema + server helpers.\n- **`@epic-web/workshop-mcp`** (`packages/workshop-mcp`): MCP server for AI\n  assistants inside workshops.\n\n## Documentation\n\nThe deeper docs live in `/docs`:\n\n- CLI: `docs/cli.md`\n- Workshop structure: `docs/workshop-structure.md`\n- Configuration: `docs/configuration.md`\n- MDX components: `docs/mdx.md`\n- Diff system: `docs/diff.md`\n- Video player: `docs/video-player.md`\n- Testing: `docs/testing.md`\n- Launch checklist: `docs/launch.md`\n- Deployment: `docs/deployment.md`\n- Development: `docs/development.md`\n- Debug logging: `docs/debug-logging.md`\n- Other features: `docs/other.md`\n\n## Contributing\n\n```bash\nnpm run setup\nnpm run validate\n```\n\nUseful scripts:\n\n- `npm run lint` / `npm run format`\n- `npm run test` (unit) / `npm run test:e2e` (playwright)\n- `npm run precommit` to run the same checks as the Git pre-commit hook\n- `npm run prepush` to run the same checks as the Git pre-push hook\n\nGit hooks are installed automatically via `npm install`/`npm run setup` with\nHusky:\n\n- `pre-commit`: formats staged files with Prettier via `lint-staged`, then runs\n  linting, type checking, and builds the workspace\n- `pre-push`: runs the test suite before allowing a push\n\n## Links\n\n- EpicWeb.dev: `https://www.epicweb.dev/get-started`\n- Repository: `https://github.com/epicweb-dev/epicshop`\n\n## License\n\nGPL-3.0-only (see `package.json`).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepicweb-dev%2Fepicshop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fepicweb-dev%2Fepicshop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepicweb-dev%2Fepicshop/lists"}