{"id":16550280,"url":"https://github.com/sylhare/react","last_synced_at":"2025-04-04T21:23:09.456Z","repository":{"id":44103094,"uuid":"85603861","full_name":"sylhare/React","owner":"sylhare","description":"Some React experimentations","archived":false,"fork":false,"pushed_at":"2025-04-04T14:39:55.000Z","size":3278,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-04T15:34:30.343Z","etag":null,"topics":["react","react-testing"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/sylhare.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":"2017-03-20T17:05:03.000Z","updated_at":"2025-04-04T14:38:28.000Z","dependencies_parsed_at":"2024-03-28T14:54:13.733Z","dependency_job_id":"90bf2d11-a9f9-4ed7-bf3f-e827e4fee0c9","html_url":"https://github.com/sylhare/React","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sylhare%2FReact","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sylhare%2FReact/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sylhare%2FReact/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sylhare%2FReact/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sylhare","download_url":"https://codeload.github.com/sylhare/React/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247250125,"owners_count":20908308,"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":["react","react-testing"],"created_at":"2024-10-11T19:33:43.474Z","updated_at":"2025-04-04T21:23:09.438Z","avatar_url":"https://github.com/sylhare.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React\n\nExperimentation with React. [Get started](https://reactjs.org/)!\n\n## Basic\n\nTo start with the syntax.\nNo npm / yarn installation required to test it, but it might be getting old (2016).\n\n## Misc-App\n\nPotluck of different examples.\n\n## Create-App\n\nCreated from the old starting [project](create-app/README.md) which might be mostly deprecated now.\nUsing [yarn](https://yarnpkg.com/) as it is well integrated with React.\n\nStart with:\n\n```bash\nyarn start\n```\n\nRun the test with jest using:\n\n```bash\nyarn test\n```\n\n### Common errors\n\n- \u003e error babel-jest@26.6.3: The engine \"node\" is incompatible with this module. Expected version \"\u003e= 10.14.2\". Got \"10.13.0\"\n\nUpdate node to the latest version. If you are using [`n`](https://github.com/tj/n) (useful when working with different node versions) do:\n\n```bash\nn latest\n```\n\n- \u003e Cannot find module '@testing-library/react/types' from 'src/App.test.js'\n\nIt may be deprecated and may not have been fixed, but it works if you remove the `/types` and use directly:\n\n```js\nimport { render, screen } from '@testing-library/react';\n```\n\n## Chakra UI\n\nExample with Chakra UI and React.\n\n## DnD\n\nExample with Drag and Drop.\n\n## Router\n\nExample with React Router.\n\n## Sources\n\nFor learning purposes:\n\n- Facebook: [React tutorial](https://facebook.github.io/react/tutorial/tutorial.html#what-were-building),\n  [create-react-app](https://github.com/facebook/create-react-app)\n- Scotch.io: [React tutorial](https://scotch.io/tutorials/learning-react-getting-started-and-concepts)\n- FreeCodeCamp: [React App One](https://www.freecodecamp.org/news/develop-deploy-first-fullstack-web-app/),\n  [React App Two](https://www.freecodecamp.org/news/fullstack-react-blog-app-with-express-and-psql/)\n- Free Online rest API: [jsonplaceholder.typicode.com](https://jsonplaceholder.typicode.com/)\n- React Documentation: [API calls](https://reactjs.org/docs/faq-ajax.html),\n  [conditional rendering](https://reactjs.org/docs/conditional-rendering.html)\n- Redux Documentation: [react-redux](https://react-redux.js.org/introduction/quick-start),\n  [React-redux examples](https://github.com/reduxjs/redux/tree/3cf3b0f48c4093aaa094eedb11efa8656e9b0309/examples),\n  [Access redux store](https://medium.com/swlh/accessing-redux-from-components-in-react-react-native-d9f0e4cdb2dc),\n  [Access redux store from outside component](https://daveceddia.com/access-redux-store-outside-react/),\n  [React + Redux real world example](https://jasonwatmore.com/post/2017/09/16/react-redux-user-registration-and-login-tutorial-example)\n- Other Documentation: [Pass props to component](https://www.robinwieruch.de/react-pass-props-to-component),\n  [Remove element from list](https://www.robinwieruch.de/react-remove-item-from-list),\n  [One page app](https://www.kirupa.com/react/creating_single_page_app_react_using_react_router.htm),\n  [react with jwt](https://bezkoder.com/spring-boot-react-jwt-auth/),\n  [Real world example](https://github.com/bezkoder/react-redux-hooks-jwt-auth/tree/28a25f525aee8f6a73f2bd1165c0b868aeedb7b5),\n  [react with login](https://www.digitalocean.com/community/tutorials/how-to-add-login-authentication-to-react-applications#step-1-%E2%80%94-building-a-login-page),\n  [Private route](https://ui.dev/react-router-v4-protected-routes-authentication/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsylhare%2Freact","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsylhare%2Freact","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsylhare%2Freact/lists"}