{"id":37500491,"url":"https://github.com/vladimirkhil/sionline","last_synced_at":"2026-05-08T10:01:25.119Z","repository":{"id":40670064,"uuid":"165555422","full_name":"VladimirKhil/SIOnline","owner":"VladimirKhil","description":"SIGame web client","archived":false,"fork":false,"pushed_at":"2026-05-04T20:59:32.000Z","size":17336,"stargazers_count":77,"open_issues_count":16,"forks_count":18,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-05-04T22:30:20.189Z","etag":null,"topics":["game-development","react","redux","typescript","webpack"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/VladimirKhil.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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},"funding":{"patreon":"vladimirkhil","custom":["https://boosty.to/vladimirkhil","https://yoomoney.ru/to/410012283941753"]}},"created_at":"2019-01-13T21:16:01.000Z","updated_at":"2026-05-04T20:59:36.000Z","dependencies_parsed_at":"2024-01-10T09:31:08.164Z","dependency_job_id":"d3c7652d-7e3d-4330-97ca-c4d14b2ee53b","html_url":"https://github.com/VladimirKhil/SIOnline","commit_stats":null,"previous_names":[],"tags_count":114,"template":false,"template_full_name":null,"purl":"pkg:github/VladimirKhil/SIOnline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VladimirKhil%2FSIOnline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VladimirKhil%2FSIOnline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VladimirKhil%2FSIOnline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VladimirKhil%2FSIOnline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VladimirKhil","download_url":"https://codeload.github.com/VladimirKhil/SIOnline/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VladimirKhil%2FSIOnline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32640538,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"online","status_checked_at":"2026-05-05T02:00:06.033Z","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":["game-development","react","redux","typescript","webpack"],"created_at":"2026-01-16T07:48:27.383Z","updated_at":"2026-05-05T08:02:17.966Z","avatar_url":"https://github.com/VladimirKhil.png","language":"TypeScript","funding_links":["https://patreon.com/vladimirkhil","https://boosty.to/vladimirkhil","https://yoomoney.ru/to/410012283941753"],"categories":[],"sub_categories":[],"readme":"SIGame (trivia game) client running in web, on desktop and in Steam (with the help of Tauri).\n\nAvailable clients can be found here: https://vladimirkhil.com/si/game\n\nFor compilation and running you need Node.js version 18.15.0 or higher.\n\nUsed technologies: Typescript, Webpack (with loaders and plugins), React, Redux, Redux Thunk, SignalR, TSLint, Jest, Tauri.\n\nRun:\n\n```\nnpm install\nnpm run start\n```\n\nThe development server will automatically open your browser to `http://localhost:8080`.\n\nBuild:\n\n```\nnpm install\nnpm run build-prod\n```\n\n# Testing\n\nSIOnline includes multiple testing approaches:\n\n## Unit Tests\nRun Jest unit tests for components and logic:\n```bash\nnpm test\n```\n\n## End-to-End Tests\nRun Playwright E2E tests for complete user flows:\n```bash\n# Run all E2E tests\nnpm run test:e2e\n\n# Run in UI mode (interactive) - REQUIRES display/X Server\n# Only works on local machines with graphical display\nnpm run test:e2e:ui\n\n# Run in debug mode (step-through)\nnpm run test:e2e:debug\n```\n\n**Note**: The UI mode (`test:e2e:ui`) requires a graphical environment and will not work in headless environments like CI pipelines or GitHub Codespaces. Use `npm run test:e2e` instead in those environments.\n\n## Integration Test\nComprehensive game flow test without UI (connects to live server).\n\n**Disabled by default** - only runs when explicitly enabled during manual development:\n```bash\nRUN_INTEGRATION_TEST=1 npm run test GameIntegration.test.ts\n```\n\nSee [test/GAME_INTEGRATION_TEST.md](test/GAME_INTEGRATION_TEST.md) for details.\n\n## Manual Testing\nFor detailed instructions on visual testing with UI, see [TESTING.md](./TESTING.md).\n\n## Mock Service Worker (MSW)\nAPI mocking for testing without a live server. See [docs/TESTING_WITH_MSW.md](docs/TESTING_WITH_MSW.md) for details.\n\n# Desktop build\n\nsrc/host/TauriHost.ts:\n\nconst isSteam = false; // Also important for Web build too\n\ntauri/src-tauri/tauri.conf.json:\n\n\"beforeBuildCommand\": \"npm run build\",\n\"frontendDist\": \"../dist\"\n\ntauri/vite.config.ts:\n\ncomment out: root: '../dist'\n\n# Steam build\n\nsrc/host/TauriHost.ts:\n\nconst isSteam = true; // TODO: STEAM_CLIENT: true\n\ntauri/src-tauri/tauri.conf.json:\n\n\"beforeBuildCommand\": \"\",\n\"frontendDist\": \"../../dist\"\n\ntauri/vite.config.ts:\n\nuncomment: root: '../dist'\n\nSet new version in Cargo.toml and tauri.conf.json\n\nrun:\nnpm run build-prod\ntauri/build-steam.ps1","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvladimirkhil%2Fsionline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvladimirkhil%2Fsionline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvladimirkhil%2Fsionline/lists"}