{"id":21997607,"url":"https://github.com/ali-raza764/chess-pro","last_synced_at":"2025-04-30T21:05:14.573Z","repository":{"id":245089567,"uuid":"817224290","full_name":"Ali-Raza764/chess-pro","owner":"Ali-Raza764","description":"A chess app made using nextjs 14","archived":false,"fork":false,"pushed_at":"2024-07-16T07:03:27.000Z","size":2451,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-30T21:05:01.665Z","etag":null,"topics":["chess","chess-api","nextjs14","puzzles","reactjs","socket-io","stockfish"],"latest_commit_sha":null,"homepage":"https://chess-pro.vercel.app","language":"JavaScript","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/Ali-Raza764.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}},"created_at":"2024-06-19T09:12:26.000Z","updated_at":"2024-11-01T06:50:45.000Z","dependencies_parsed_at":"2024-07-06T08:32:07.757Z","dependency_job_id":null,"html_url":"https://github.com/Ali-Raza764/chess-pro","commit_stats":null,"previous_names":["ali-raza764/chess-pro"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ali-Raza764%2Fchess-pro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ali-Raza764%2Fchess-pro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ali-Raza764%2Fchess-pro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ali-Raza764%2Fchess-pro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ali-Raza764","download_url":"https://codeload.github.com/Ali-Raza764/chess-pro/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251782760,"owners_count":21642986,"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":["chess","chess-api","nextjs14","puzzles","reactjs","socket-io","stockfish"],"created_at":"2024-11-29T22:17:24.228Z","updated_at":"2025-04-30T21:05:14.486Z","avatar_url":"https://github.com/Ali-Raza764.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).\n\n## Getting Started\n\nFirst, run the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n# or\nbun dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\nYou can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.\n\nThis project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!\n\n## Deploy on Vercel\n\nThe easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme) from the creators of Next.js.\n\nCheck out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.\n\n```\nchess-pro\n├─ .eslintrc.json\n├─ .gitignore\n├─ jsconfig.json\n├─ next.config.mjs\n├─ package-lock.json\n├─ package.json\n├─ postcss.config.mjs\n├─ public\n│  ├─ chess-1.webp\n│  ├─ chess-bg.webp\n│  ├─ images\n│  │  └─ puzzles\n│  │     ├─ puzzle-1.webp\n│  │     ├─ puzzle-2.webp\n│  │     └─ puzzle-3.webp\n│  ├─ next.svg\n│  ├─ sounds\n│  │  ├─ capture.mp3\n│  │  ├─ castle.mp3\n│  │  ├─ checkmate.mp3\n│  │  ├─ move-check.mp3\n│  │  ├─ move-self.mp3\n│  │  ├─ notify.mp3\n│  │  └─ promote.mp3\n│  ├─ stockfish.js\n│  └─ vercel.svg\n├─ README.md\n├─ src\n│  ├─ app\n│  │  ├─ (auth)\n│  │  │  ├─ signin\n│  │  │  │  └─ page.jsx\n│  │  │  └─ signup\n│  │  │     └─ page.jsx\n│  │  ├─ (root)\n│  │  │  ├─ about\n│  │  │  │  └─ page.jsx\n│  │  │  ├─ analysis\n│  │  │  │  ├─ Analysis.jsx\n│  │  │  │  └─ page.jsx\n│  │  │  ├─ game\n│  │  │  │  ├─ computer\n│  │  │  │  │  ├─ Computer.jsx\n│  │  │  │  │  └─ page.jsx\n│  │  │  │  ├─ page.jsx\n│  │  │  │  ├─ PlayComponent.jsx\n│  │  │  │  └─ Waiting.jsx\n│  │  │  ├─ membership\n│  │  │  │  └─ page.jsx\n│  │  │  ├─ play\n│  │  │  │  ├─ gameFormats.js\n│  │  │  │  └─ page.jsx\n│  │  │  ├─ profile\n│  │  │  │  └─ page.jsx\n│  │  │  └─ puzzles\n│  │  │     ├─ page.jsx\n│  │  │     └─ Puzzles.jsx\n│  │  ├─ api\n│  │  ├─ favicon.ico\n│  │  ├─ globals.css\n│  │  ├─ layout.js\n│  │  └─ page.jsx\n│  ├─ components\n│  │  ├─ game\n│  │  │  ├─ assets\n│  │  │  │  └─ sounds\n│  │  │  │     └─ index.js\n│  │  │  ├─ Board\n│  │  │  │  ├─ EvalBar.jsx\n│  │  │  │  ├─ index.jsx\n│  │  │  │  └─ PreviousMoves.jsx\n│  │  │  └─ online\n│  │  │     ├─ Clock.jsx\n│  │  │     ├─ CreateGame.jsx\n│  │  │     ├─ GameActions.jsx\n│  │  │     ├─ PLayWithFriend.jsx\n│  │  │     ├─ RematchButton.jsx\n│  │  │     └─ Users.jsx\n│  │  ├─ other\n│  │  │  ├─ Hero.jsx\n│  │  │  ├─ OverViews.jsx\n│  │  │  └─ Puzzles.jsx\n│  │  ├─ reuseable\n│  │  │  └─ SideSelection.jsx\n│  │  ├─ shared\n│  │  │  ├─ Footer\n│  │  │  │  └─ index.jsx\n│  │  │  └─ Header\n│  │  │     ├─ index.jsx\n│  │  │     ├─ links.js\n│  │  │     ├─ MobileNavbar.jsx\n│  │  │     └─ SimpleNabar.jsx\n│  │  └─ user\n│  └─ utils\n│     ├─ engine\n│     │  ├─ bestmove.js\n│     │  └─ index.js\n│     ├─ hooks\n│     │  └─ useSound.js\n│     └─ socket\n│        └─ socket.js\n└─ tailwind.config.js\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fali-raza764%2Fchess-pro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fali-raza764%2Fchess-pro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fali-raza764%2Fchess-pro/lists"}