{"id":51330997,"url":"https://github.com/isnanno/sushiproxy","last_synced_at":"2026-07-01T23:01:32.707Z","repository":{"id":328590261,"uuid":"1116019274","full_name":"isnanno/sushiproxy","owner":"isnanno","description":"Proxy Express que serve ZIPs de scripts Lua Steam via GitHub API (LuaTools / Virtuous)","archived":false,"fork":false,"pushed_at":"2026-07-01T21:28:52.000Z","size":837,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-01T22:16:49.587Z","etag":null,"topics":["express","lua","nodejs","proxy","steam"],"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/isnanno.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,"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":"2025-12-14T02:57:32.000Z","updated_at":"2026-07-01T20:59:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"7a5b2671-1df9-40ce-b6bd-2795391c2434","html_url":"https://github.com/isnanno/sushiproxy","commit_stats":null,"previous_names":["isnanno/games-steam-api-by-nanno","isnanno/sushiproxy"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/isnanno/sushiproxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isnanno%2Fsushiproxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isnanno%2Fsushiproxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isnanno%2Fsushiproxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isnanno%2Fsushiproxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/isnanno","download_url":"https://codeload.github.com/isnanno/sushiproxy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isnanno%2Fsushiproxy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35025983,"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-07-01T02:00:05.325Z","response_time":130,"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":["express","lua","nodejs","proxy","steam"],"created_at":"2026-07-01T23:00:43.084Z","updated_at":"2026-07-01T23:01:32.687Z","avatar_url":"https://github.com/isnanno.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SushiProxy\n\n\u003e Proxy Express que serve arquivos `.zip` de scripts Lua para jogos Steam a partir de um **repositório GitHub privado** — usado pelo ecossistema LuaTools / Virtuous.\n\n[![Node.js](https://img.shields.io/badge/Node.js-18%2B-339933?logo=node.js\u0026logoColor=white)](package.json)\n[![Express](https://img.shields.io/badge/Express-API-000000?logo=express\u0026logoColor=white)](server.js)\n[![Steam](https://img.shields.io/badge/Steam-Lua%20scripts-1B2838?logo=steam\u0026logoColor=white)](https://store.steampowered.com)\n[![License](https://img.shields.io/badge/license-MIT-blue)](LICENSE)\n\n---\n\n## Como funciona\n\n```\nCliente (LuaTools / Virtuous)\n        │\n        ▼\nGET /game/:appid  ──►  GitHub API (repo privado)\n        │                      │\n        ▼                      ▼\n   stream .zip           {appid}.zip (Git LFS)\n```\n\nO servidor busca `https://api.github.com/repos/{OWNER}/{REPO}/contents/{appid}.zip` com token e devolve o ZIP como download.\n\n## Variáveis de ambiente\n\n| Variável | Descrição |\n|----------|-----------|\n| `PORT` | Porta HTTP (padrão: `3000`) |\n| `GITHUB_TOKEN` | Personal Access Token com acesso ao repo privado |\n| `OWNER` | Dono do repositório GitHub (editar em `server.js` ou via env) |\n| `REPO` | Nome do repo com os ZIPs (padrão: `sushitools-games-repo`) |\n| `BRANCH` | Branch (padrão: `main`) |\n\n## Setup local\n\n```bash\nnpm install\nexport GITHUB_TOKEN=ghp_...\n# Edite OWNER em server.js ou mova para env\nnode server.js\n```\n\nTeste: `http://localhost:3000/game/730` (substitua pelo AppID desejado)\n\n## Repositório de jogos (Git LFS)\n\nOs arquivos `{appid}.zip` devem estar no repo privado. O `.gitattributes` neste projeto documenta tracking LFS para `*.zip`.\n\nEstrutura esperada no repo de jogos:\n\n```\nsushitools-games-repo/\n├── 730.zip\n├── 570.zip\n└── ...\n```\n\n## Deploy\n\nCompatível com Square Cloud, Railway, VPS, etc. Configure `GITHUB_TOKEN` como secret.\n\n## Projetos relacionados\n\n- [luatools-steam-plugin](../luatools-steam-plugin) — plugin Millennium\n- [virtuous-steam-installer](../virtuous-steam-installer) — instalador standalone GUI\n\n## Licença\n\nMIT — veja [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisnanno%2Fsushiproxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fisnanno%2Fsushiproxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisnanno%2Fsushiproxy/lists"}