{"id":25498418,"url":"https://github.com/belynnn/ckx__wordle-clone-react","last_synced_at":"2025-11-11T08:30:18.463Z","repository":{"id":177319730,"uuid":"485568525","full_name":"belynnn/CKX__wordle-clone-react","owner":"belynnn","description":null,"archived":false,"fork":false,"pushed_at":"2022-05-04T14:19:12.000Z","size":189,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-19T02:53:52.088Z","etag":null,"topics":["project","react","will-not-be-finished","wordle-game"],"latest_commit_sha":null,"homepage":"","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/belynnn.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}},"created_at":"2022-04-25T23:37:11.000Z","updated_at":"2024-06-28T23:41:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"e9468f40-cd86-4726-921f-d31074756c96","html_url":"https://github.com/belynnn/CKX__wordle-clone-react","commit_stats":null,"previous_names":["debbyckx/wordle-clone-react","belynnn/wordle-clone-react","belynnn/ckx__wordle-clone-react"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/belynnn%2FCKX__wordle-clone-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/belynnn%2FCKX__wordle-clone-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/belynnn%2FCKX__wordle-clone-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/belynnn%2FCKX__wordle-clone-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/belynnn","download_url":"https://codeload.github.com/belynnn/CKX__wordle-clone-react/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239587220,"owners_count":19663892,"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":["project","react","will-not-be-finished","wordle-game"],"created_at":"2025-02-19T02:53:54.239Z","updated_at":"2025-11-11T08:30:18.412Z","avatar_url":"https://github.com/belynnn.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ROADMAP perso\n- CHECK 1 Créer une app react \u003e npx create-react-app my-app \u003e cd my-app\n- CHECK 2 S'assurer que l'app fonctionne \u003e npm start \u003e localhost:3000\n- CHECK 3 Envoyer l'app sur github via GIT\n- CHECK 4 Finaliser la 1ère leçon\n- CHECK 5 Finaliser la 2è leçon\n\n## DONNEES QUE L'ON DOIT TRAQUER\n### Mots trouvés\n- 5 lettres, comme 'drain'\n\n### Mots essayés\n- un array de chaque mots essayés\n- chaque mot essayé est un array de lettres objets [{d},{r},{a},{i},{n}]\n- chaque objet représente une lettre du mot à trouver {key: 'a', color: 'yellow'}\n\n### Mot essayé actuellement\n- string 'radio'\n\n### Lettre du clavier\n- array des lettres objets [{key: 'r', color: 'yellow'},{key: 'a', color: 'yellow'},{key: 'd', color: 'grey'},{key: 'i', color: 'green'},{key: 'o', color: 'grey'}]\n\n### Nombre de tours\n- un int 0 - 6\n\n## PROCESSUS DU JEU\n### Entrer un mot\n- l'utilisateur entre une lettre et un carré affiche cette lettre\n- quand un utilisateur appuie sur \"delete\", cela supprime la dernière lettre entrée\n- quand un utilisateur appuie sur \"enter\", cela envoi le mot entré\n- -- si tout les carrés n'ont pas reçu de lettres attribuées, le mot n'est pas envoyé\n- -- si le mot a déjà été utilisé lors d'un précédent tour, alors le mot n'est pas envoyé\n\n### Vérifier le mot proposé\n- chaque lettre est vérifiée pour voir si cela match avec la solution\n- chaque lettre est assignée à une couleur basée sur son inclusion dans la solution\n- -- une position correct dans la solution = vert\n- -- dans la solution mais n'a pas de correcte position = jaune\n- -- pas dans la solution = gris\n- les lettres trouvées sont ajoutés à la grille avec les couleurs assignées\n- le prochain tour à deviner bouge à la prochaine ligne de la grille\n- les lettres du claviers sont mises à jour (couleurs)\n\n### Fin du jeu\n- Quand le mot deviné correspond entièrement à la solution\n- -- 'well done'\n- Quand l'utilisateur n'a pas assez de tours\n- -- 'unlucky'\n\n## Solution pour les données\n- 1 - API\n- 2 - acquérir une base de donnée\n- 3 - fichier json\n\n# Getting Started with Create React App\n\nThis project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).\n\n## Available Scripts\n\nIn the project directory, you can run:\n\n### `npm start`\n\nRuns the app in the development mode.\\\nOpen [http://localhost:3000](http://localhost:3000) to view it in your browser.\n\nThe page will reload when you make changes.\\\nYou may also see any lint errors in the console.\n\n### `npm test`\n\nLaunches the test runner in the interactive watch mode.\\\nSee the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.\n\n### `npm run build`\n\nBuilds the app for production to the `build` folder.\\\nIt correctly bundles React in production mode and optimizes the build for the best performance.\n\nThe build is minified and the filenames include the hashes.\\\nYour app is ready to be deployed!\n\nSee the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.\n\n### `npm run eject`\n\n**Note: this is a one-way operation. Once you `eject`, you can't go back!**\n\nIf you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.\n\nInstead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.\n\nYou don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.\n\n## Learn More\n\nYou can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).\n\nTo learn React, check out the [React documentation](https://reactjs.org/).\n\n### Code Splitting\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)\n\n### Analyzing the Bundle Size\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)\n\n### Making a Progressive Web App\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)\n\n### Advanced Configuration\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)\n\n### Deployment\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)\n\n### `npm run build` fails to minify\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbelynnn%2Fckx__wordle-clone-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbelynnn%2Fckx__wordle-clone-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbelynnn%2Fckx__wordle-clone-react/lists"}