{"id":49583035,"url":"https://github.com/devkoriel/mini-rc-racer","last_synced_at":"2026-05-03T21:05:29.379Z","repository":{"id":353170053,"uuid":"1218275583","full_name":"devkoriel/mini-rc-racer","owner":"devkoriel","description":"Clean-room browser toy-car racer with a 3D chase camera, Maple Block vertical slice, and desktop/mobile controls.","archived":false,"fork":false,"pushed_at":"2026-04-22T18:01:50.000Z","size":77,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-22T20:05:00.053Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/devkoriel.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":null,"dco":null,"cla":null}},"created_at":"2026-04-22T17:57:41.000Z","updated_at":"2026-04-22T18:01:55.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/devkoriel/mini-rc-racer","commit_stats":null,"previous_names":["devkoriel/mini-rc-racer"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/devkoriel/mini-rc-racer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devkoriel%2Fmini-rc-racer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devkoriel%2Fmini-rc-racer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devkoriel%2Fmini-rc-racer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devkoriel%2Fmini-rc-racer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devkoriel","download_url":"https://codeload.github.com/devkoriel/mini-rc-racer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devkoriel%2Fmini-rc-racer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32584665,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: 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":"2026-05-03T21:05:23.220Z","updated_at":"2026-05-03T21:05:29.368Z","avatar_url":"https://github.com/devkoriel.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mini RC Racer\n\n`Mini RC Racer` is a clean-room browser toy-car racer built for modern browsers. It targets the same late-90s RC arcade feeling people remember, but it does so with original code, original art direction, and a legal public-repo path instead of shipping `Re-Volt` content.\n\n## What is in this repo\n\n- Responsive browser game shell with desktop and mobile layouts\n- Real WebGL 3D chase-camera renderer using `Three.js`\n- One playable `Maple Block` suburban circuit with boost pickups and a rival car\n- Rival AI that follows the racing line\n- Race countdown, HUD telemetry, and persistent best laps\n- Keyboard, touch, tilt, and gamepad support in the same build\n- In-page control options for touch steering mode and motion access\n- A clean-room analysis brief in `docs/clean-room-analysis.md`\n- Vite + TypeScript setup for local development\n- GitHub Actions CI for typecheck, test, and production build\n- Cloudflare Pages-ready output via `wrangler.toml`\n\n## Planning Docs\n\n- Design vision: `docs/design-vision.md`\n- Clean-room guardrails: `docs/clean-room-analysis.md`\n- Vertical slice plan: `plans/mini-rc-racer-vertical-slice.md`\n- Maple Block brief: `docs/maple-block-brief.md`\n- HUD and shell brief: `docs/hud-shell-brief.md`\n- Prioritized backlog: `docs/implementation-backlog.md`\n\n## Local development\n\n```bash\nnpm install\nnpm run dev\n```\n\nOpen the local Vite URL, usually `http://localhost:4173`.\n\nControls:\n\n- `WASD` or arrows to steer and drive\n- `Space` to start or replay\n- `R` to reset from the grid or finish state\n- Touch buttons on mobile\n- Tilt steering on supported mobile browsers after sensor permission\n- Standard gamepad support with stick or D-pad plus triggers\n\n## Verification\n\n```bash\nnpm run typecheck\nnpm test\nnpm run build\nnpm audit\n```\n\n## Cloudflare Deploy\n\nThis repo is ready for both `Cloudflare Pages` and `Cloudflare Workers Builds`.\n\n### Pages\n\n- Framework preset: `None`\n- Build command: `npm run build`\n- Build output directory: `dist`\n- Node.js version: `22`\n\n### Workers Builds\n\n- Worker / project name: `mini-rc-racer`\n- Production branch: `main`\n- Build command: `npm run build`\n- Deploy command: `npx wrangler deploy`\n- Non-production branch deploy command: `npx wrangler versions upload`\n- Root directory / path: `/`\n- Build variables: none required\n\nThe repo includes a `wrangler.toml` that pins the Worker name and points static assets at `./dist`, which matches the dashboard settings above.\n\nYou can also deploy manually with Wrangler after authenticating:\n\n```bash\nnpx wrangler deploy\n```\n\n## Next milestones\n\n1. Add a title screen, pause menu, and options flow that feel like a shipping game.\n2. Add more tracks, stronger collision dressing, and better rival behavior.\n3. Layer in audio, better materials, and device QA for a real public alpha.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevkoriel%2Fmini-rc-racer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevkoriel%2Fmini-rc-racer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevkoriel%2Fmini-rc-racer/lists"}