{"id":51015094,"url":"https://github.com/root-hunter/ppsspp-web","last_synced_at":"2026-06-21T09:02:44.929Z","repository":{"id":361673880,"uuid":"1249469972","full_name":"root-hunter/ppsspp-web","owner":"root-hunter","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-31T18:16:55.000Z","size":804,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"wasm","last_synced_at":"2026-05-31T20:13:00.606Z","etag":null,"topics":["emulator","js","psp","web"],"latest_commit_sha":null,"homepage":"https://root-hunter.github.io/ppsspp-web/","language":"JavaScript","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/root-hunter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.TXT","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":"2026-05-25T18:27:58.000Z","updated_at":"2026-05-31T19:46:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/root-hunter/ppsspp-web","commit_stats":null,"previous_names":["root-hunter/ppsspp-web"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/root-hunter/ppsspp-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/root-hunter%2Fppsspp-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/root-hunter%2Fppsspp-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/root-hunter%2Fppsspp-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/root-hunter%2Fppsspp-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/root-hunter","download_url":"https://codeload.github.com/root-hunter/ppsspp-web/tar.gz/refs/heads/wasm","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/root-hunter%2Fppsspp-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34603647,"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-21T02:00:05.568Z","response_time":54,"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":["emulator","js","psp","web"],"created_at":"2026-06-21T09:02:43.066Z","updated_at":"2026-06-21T09:02:44.920Z","avatar_url":"https://github.com/root-hunter.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ppsspp-web\n\nWeb shell and local server for the PPSSPP WebAssembly build.\n\nThis repository contains:\n\n- `wasm-page/`: Angular app, browser UI, service worker, manifest, and icons.\n- `server/`: HTTPS server with COOP/COEP headers and the browser ad hoc WebSocket relay.\n\nThe emulator source and WebAssembly build outputs live in `deps/ppsspp-wasm`,\nthe pinned Git submodule used for reproducible checkouts and local development.\nIf you temporarily want to use a separate checkout, override\n`WASM_ROOT=/path/to/ppsspp-wasm`.\n\n## Checkout\n\nClone with submodules:\n\n```sh\ngit clone --recurse-submodules https://github.com/root-hunter/ppsspp-web.git\n```\n\nFor an existing checkout:\n\n```sh\ngit submodule update --init --recursive\n```\n\nOr use the Makefile wrapper:\n\n```sh\nmake wasm-submodules\n```\n\n## Local Run\n\nInstall and build the Angular app:\n\n```sh\nmake app-install\nmake app-build\n```\n\nBuild PPSSPP from the active `WASM_ROOT` first:\n\n```sh\nmake wasm-dev\n```\n\nThen serve it from this repository:\n\n```sh\nmake serve\n```\n\nBy default the server reads `deps/ppsspp-wasm/build-wasm/` and\n`deps/ppsspp-wasm/build-wasm-release/`. Use\n`WASM_ROOT=/path/to/ppsspp-wasm` if the checkout lives somewhere else.\n\nUseful local-development shortcuts:\n\n```sh\nmake wasm-status\nmake wasm-submodule-branch\nmake wasm-dev\nmake serve\n```\n\nTo update the pinned submodule to the latest `origin/wasm`:\n\n```sh\nmake wasm-submodule-update\ngit diff --submodule\n```\n\nTo pin `ppsspp-web` to the current committed HEAD of a separate sibling\n`../ppsspp-wasm` checkout, when you are using one:\n\n```sh\nmake wasm-pin-local\ngit diff --submodule\n```\n\nPush the `ppsspp-wasm` commit before sharing the `ppsspp-web` submodule pointer,\notherwise other machines will not be able to fetch it.\n\n## Docker\n\n```sh\nmake server-docker-up\n```\n\nThe Docker image builds the Angular web shell in a Node stage, then serves the\ncompiled static bundle from the Python server. The compose file mounts\n`WASM_ROOT` read-only at `/wasm`. For the sibling local checkout:\n\n```sh\nmake server-docker-up-local\n```\n\n## GitHub Pages\n\nBuild the static Angular bundle with a relative base href, ready for GitHub\nPages, from an existing `ppsspp-wasm` release build:\n\n```sh\nmake wasm-release\nmake app-build-pages\n```\n\nOr run the complete local pipeline in one shot:\n\n```sh\nmake pages\n```\n\nThe target writes the publishable app to `wasm-page/dist/ppsspp-web/`, adds\n`.nojekyll`, copies `$(WASM_ROOT)/build-wasm-release/` into\n`wasm-page/dist/ppsspp-web/build-wasm/`, and publishes\n`$(WASM_ROOT)/assets/` under `build-wasm/assets/` when present. That output\ndirectory is the exact static artifact uploaded by the GitHub Pages workflow.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froot-hunter%2Fppsspp-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froot-hunter%2Fppsspp-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froot-hunter%2Fppsspp-web/lists"}