{"id":15102641,"url":"https://github.com/avicted/todo_app_vite_react_frontend","last_synced_at":"2025-09-09T22:15:47.273Z","repository":{"id":255765810,"uuid":"852960594","full_name":"Avicted/todo_app_vite_react_frontend","owner":"Avicted","description":"React 18 Frontent with Redux-Toolkit. Basic App that integrates with the backend:  https://github.com/Avicted/todo_app_dotnetcore_backend","archived":false,"fork":false,"pushed_at":"2024-10-01T18:49:21.000Z","size":795,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-10T22:44:36.302Z","etag":null,"topics":["docker","docker-compose","e2e-tests","playwright","playwright-typescript","react","todoapp","typescript","typescript-react","vite"],"latest_commit_sha":null,"homepage":"https://todo-frontend.victoranderssen.com/","language":"TypeScript","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/Avicted.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-09-05T18:20:29.000Z","updated_at":"2025-01-23T19:25:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"9a3da080-075f-4021-8b4a-65bbc78eab11","html_url":"https://github.com/Avicted/todo_app_vite_react_frontend","commit_stats":{"total_commits":44,"total_committers":1,"mean_commits":44.0,"dds":0.0,"last_synced_commit":"c251e7063db9fc13ff3ea14c55ff711e8d6bec69"},"previous_names":["avicted/todo_app_vite_react_frontend"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Avicted%2Ftodo_app_vite_react_frontend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Avicted%2Ftodo_app_vite_react_frontend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Avicted%2Ftodo_app_vite_react_frontend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Avicted%2Ftodo_app_vite_react_frontend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Avicted","download_url":"https://codeload.github.com/Avicted/todo_app_vite_react_frontend/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247332524,"owners_count":20921852,"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":["docker","docker-compose","e2e-tests","playwright","playwright-typescript","react","todoapp","typescript","typescript-react","vite"],"created_at":"2024-09-25T19:03:52.300Z","updated_at":"2025-04-05T11:42:09.742Z","avatar_url":"https://github.com/Avicted.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Frontend Todo App\nBackend (C# Dotnet Core) for this project can be found here:\n\nhttps://github.com/Avicted/todo_app_dotnetcore_backend\n\nTodo App with React, TypeScript, Vite, and Tailwind CSS.\n\n## Features\n- Create new todo items\n- Update todo items\n- Delete todo items\n- View all todo items that belong to the user\n- Authentication with the backend\n\n## Testing\n- Playwright for end-to-end testing of the frontend\n\n---\n\n## How to run the project\n```bash\n# Install dependencies\nnpm install\n\n# Run the development server\nnpm run dev\n\n# End-to-end testing with Playwright\nnpx playwright test --ui\n\n# or\nnpm run test\n```\n\n## Docker that can interact with the backend\n```bash\ndocker network create shared-network\ndocker-compose up\n```\n\n![Todo Items Page](Screenshot_TodoItems.png \"Todo Items Page\")\n![New Todo Item Modal](Screenshot_New_TodoItem.png \"New Todo Item Modal\")\n\n---\n# Vite Documentation\n\n## React + TypeScript + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n## Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend updating the configuration to enable type aware lint rules:\n\n- Configure the top-level `parserOptions` property like this:\n\n```js\nexport default tseslint.config({\n  languageOptions: {\n    // other options...\n    parserOptions: {\n      project: ['./tsconfig.node.json', './tsconfig.app.json'],\n      tsconfigRootDir: import.meta.dirname,\n    },\n  },\n})\n```\n\n- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`\n- Optionally add `...tseslint.configs.stylisticTypeChecked`\n- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:\n\n```js\n// eslint.config.js\nimport react from 'eslint-plugin-react'\n\nexport default tseslint.config({\n  // Set the react version\n  settings: { react: { version: '18.3' } },\n  plugins: {\n    // Add the react plugin\n    react,\n  },\n  rules: {\n    // other rules...\n    // Enable its recommended rules\n    ...react.configs.recommended.rules,\n    ...react.configs['jsx-runtime'].rules,\n  },\n})\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favicted%2Ftodo_app_vite_react_frontend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favicted%2Ftodo_app_vite_react_frontend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favicted%2Ftodo_app_vite_react_frontend/lists"}