{"id":50709452,"url":"https://github.com/playday3008/vmware-index","last_synced_at":"2026-06-09T14:02:26.846Z","repository":{"id":354665201,"uuid":"1224615089","full_name":"playday3008/vmware-index","owner":"playday3008","description":"Web app that indexes VMware product downloads from Broadcom/VMware update servers with Wayback Machine fallback","archived":false,"fork":false,"pushed_at":"2026-05-17T15:00:07.000Z","size":288,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-17T16:52:41.060Z","etag":null,"topics":["broadcom","cloudflare-workers","svelte","sveltekit","tailwindcss","typescript","vmware","wayback-machine"],"latest_commit_sha":null,"homepage":"https://vmware-index.playday3008.dev","language":"TypeScript","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/playday3008.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-29T13:05:11.000Z","updated_at":"2026-05-17T15:00:05.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/playday3008/vmware-index","commit_stats":null,"previous_names":["playday3008/vmware-index"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/playday3008/vmware-index","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/playday3008%2Fvmware-index","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/playday3008%2Fvmware-index/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/playday3008%2Fvmware-index/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/playday3008%2Fvmware-index/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/playday3008","download_url":"https://codeload.github.com/playday3008/vmware-index/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/playday3008%2Fvmware-index/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34110012,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"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":["broadcom","cloudflare-workers","svelte","sveltekit","tailwindcss","typescript","vmware","wayback-machine"],"created_at":"2026-06-09T14:02:25.917Z","updated_at":"2026-06-09T14:02:26.840Z","avatar_url":"https://github.com/playday3008.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VMware Product Download Index\n\nA web app that indexes VMware product downloads by fetching XML metadata from Broadcom/VMware update servers, with Wayback Machine as a fallback source.\n\n## Features\n\n- **10 VMware products** — Workstation Pro, Fusion Pro, Player, Remote Console (all platforms)\n- **3-source fallback chain** — Broadcom → VMware → Wayback Machine\n- **Verbose status logging** — See which sources were tried and how long each took\n- **Download links** — Wayback Machine download URLs and CDN curl commands with checksums\n- **Dark VMware-themed UI** — Tailwind CSS dark theme\n\n## How It Works\n\n1. Select a product from the dropdown\n2. The app fetches the product XML from Broadcom's update server, falling back to VMware's server, then to the Wayback Machine\n3. Select a version/build from the populated list\n4. Click \"Show Downloadable Files\" to fetch and decompress the metadata XML\n5. Download files via Wayback Machine links or use the CDN curl commands\n\n### Version Qualifiers\n\n- **Core** — Main application installer\n- **Packages** — Additional components (VMware Tools ISOs, guest OS drivers, etc.)\n- **Windows / Linux** — Host operating system the build targets\n\n## Tech Stack\n\n- [SvelteKit](https://svelte.dev/) (Svelte 5, runes mode)\n- [Tailwind CSS](https://tailwindcss.com/) v4\n- [Cloudflare Workers](https://workers.cloudflare.com/) deployment\n- [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) for XML parsing\n- [pako](https://github.com/nodeca/pako) for gzip decompression\n\n## Development\n\n```bash\n# Install dependencies\nbun install\n\n# Start dev server\nbun run dev\n\n# Type check\nbun run check\n\n# Run tests\nbun run test:unit\n\n# Build for production\nbun run build\n\n# Deploy to Cloudflare Workers\nbun run deploy\n```\n\n## Project Structure\n\n```\nsrc/\n├── lib/\n│   ├── components/       # Svelte 5 UI components\n│   ├── server/           # Server-only modules (cache, XML parser, fetcher)\n│   ├── types.ts          # Shared TypeScript interfaces\n│   └── products.ts       # Product config (shared client/server)\n├── routes/\n│   ├── api/products/     # REST API endpoints\n│   ├── +layout.svelte    # App shell (header, footer, dark theme)\n│   └── +page.svelte      # Main page orchestrator\n├── app.css               # Tailwind config + theme variables\n└── app.html              # HTML shell\n```\n\n## Data Sources\n\n| Source          | URL Base                                            | Timeout |\n| --------------- | --------------------------------------------------- | ------- |\n| Broadcom        | `softwareupdate-prod.broadcom.com/cds/vmw-desktop/` | 3s      |\n| VMware          | `softwareupdate.vmware.com/cds/vmw-desktop/`        | 3s      |\n| Wayback Machine | `web.archive.org/web/{timestamp}id_/`               | 10s     |\n\nThe app tries each source in order. Currently, the live Broadcom/VMware servers return stripped XML (only `info-only` entries), so the Wayback Machine is the effective primary source.\n\n## License\n\nNot affiliated with VMware or Broadcom.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplayday3008%2Fvmware-index","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplayday3008%2Fvmware-index","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplayday3008%2Fvmware-index/lists"}