{"id":26155584,"url":"https://github.com/parthasdey2304/chess-app","last_synced_at":"2026-05-25T13:41:48.796Z","repository":{"id":280337368,"uuid":"940664386","full_name":"parthasdey2304/chess-app","owner":"parthasdey2304","description":"This is a basics chess practise application that uses `stockfish.js` and `react-chessboard` and helps you practise chess.","archived":false,"fork":false,"pushed_at":"2025-02-28T15:22:43.000Z","size":54,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T20:53:32.319Z","etag":null,"topics":[],"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/parthasdey2304.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}},"created_at":"2025-02-28T15:18:42.000Z","updated_at":"2025-02-28T15:22:47.000Z","dependencies_parsed_at":"2025-03-02T20:53:37.482Z","dependency_job_id":"1b65b873-74bc-4b63-9865-48946bf897e8","html_url":"https://github.com/parthasdey2304/chess-app","commit_stats":null,"previous_names":["parthasdey2304/chess-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parthasdey2304%2Fchess-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parthasdey2304%2Fchess-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parthasdey2304%2Fchess-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parthasdey2304%2Fchess-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/parthasdey2304","download_url":"https://codeload.github.com/parthasdey2304/chess-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243004117,"owners_count":20220237,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2025-03-11T08:57:25.655Z","updated_at":"2025-12-16T11:58:09.179Z","avatar_url":"https://github.com/parthasdey2304.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chess WebApp with React and Stockfish\n\nA feature-rich chess web application built with React.js and Stockfish chess engine integration.\n\n## Features\n\n- Play against Stockfish chess engine with adjustable ELO ratings\n- Game analysis with Stockfish showing multiple lines and evaluations\n- Export games as PGN\n- Create animated GIFs of your games\n- Visual analysis with arrows showing potential variations\n- Game timer with customizable time controls\n- Game review section with comments\n\n## Prerequisites\n\n- Node.js 14.x or higher\n- npm 6.x or higher\n\n## Installation\n\n1. Clone the repository\n```bash\ngit clone https://github.com/yourusername/chess-webapp.git\ncd chess-webapp\n```\n\n2. Install dependencies\n```bash\nnpm install\n```\n\n3. Download Stockfish WASM\n   - Go to [stockfish.wasm GitHub repository](https://github.com/lichess-org/stockfish.wasm)\n   - Download the latest version of `stockfish.js` and `stockfish.wasm`\n   - Place these files in the `public` folder of the project\n\n4. Start the development server\n```bash\nnpm start\n```\n\n5. Open your browser and navigate to `http://localhost:3000`\n\n## Usage\n\n### Playing Against the Computer\n1. On the main page, click \"New Game\"\n2. Choose your preferred ELO rating and time control\n3. Make your moves on the board\n\n### Game Analysis\n1. After completing a game, click \"Analyze Game\"\n2. Use the analysis tools to review your game\n3. Explore different lines shown by Stockfish\n\n### Exporting PGN\n1. After a game, click \"Export PGN\"\n2. The PGN file will be downloaded to your computer\n\n### Creating Game GIFs\n1. After a game, click \"Create Game GIF\"\n2. Wait for the GIF to be generated\n3. The GIF will be downloaded automatically\n\n### Game Reviews\n1. Navigate to the \"Reviews\" section\n2. View previous games\n3. Add comments to games for future reference\n\n## Project Structure\n\n```\nchess_webapp/\n│\n├── public/                # Public assets\n│   ├── stockfish.js       # Stockfish WASM engine\n│   ├── index.html         # HTML entry point\n│   └── ...\n│\n├── src/                   # Source files\n│   ├── components/        # Reusable UI components\n│   │   ├── Chessboard.jsx\n│   │   ├── ELOSelector.jsx\n│   │   ├── GameControls.jsx\n│   │   ├── MoveHistory.jsx\n│   │   └── Timer.jsx\n│   │\n│   ├── hooks/             # Custom React hooks\n│   │   ├── useChessGame.js\n│   │   ├── useStockfish.js\n│   │   └── useTimer.js\n│   │\n│   ├── pages/             # Page components\n│   │   ├── GamePage.jsx\n│   │   ├── AnalysisPage.jsx\n│   │   ├── ReviewPage.jsx\n│   │   └── pages.css\n│   │\n│   ├── App.jsx            # Main App component\n│   ├── App.css            # Main styles\n│   └── index.js           # Entry point\n│\n├── package.json           # Project dependencies\n└── README.md              # Project documentation\n```\n\n## Technologies Used\n\n- React.js\n- Chess.js\n- React Chessboard\n- Stockfish Chess Engine (WASM version)\n- React Router\n- HTML2Canvas\n- Gifshot\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparthasdey2304%2Fchess-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparthasdey2304%2Fchess-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparthasdey2304%2Fchess-app/lists"}