{"id":49361697,"url":"https://github.com/ijas9118/my-react-practice","last_synced_at":"2026-04-27T16:37:08.295Z","repository":{"id":316019954,"uuid":"1061600663","full_name":"ijas9118/my-react-practice","owner":"ijas9118","description":"Documenting my solutions of react machine code challenges","archived":false,"fork":false,"pushed_at":"2026-03-30T21:44:10.000Z","size":184,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-30T23:45:09.374Z","etag":null,"topics":["machine-coding-interview","reactjs"],"latest_commit_sha":null,"homepage":"https://react-quest-theta.vercel.app","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/ijas9118.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-22T06:22:54.000Z","updated_at":"2026-03-30T21:44:14.000Z","dependencies_parsed_at":"2025-09-22T18:04:26.165Z","dependency_job_id":null,"html_url":"https://github.com/ijas9118/my-react-practice","commit_stats":null,"previous_names":["ijas9118/my-react-practice"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ijas9118/my-react-practice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijas9118%2Fmy-react-practice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijas9118%2Fmy-react-practice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijas9118%2Fmy-react-practice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijas9118%2Fmy-react-practice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ijas9118","download_url":"https://codeload.github.com/ijas9118/my-react-practice/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijas9118%2Fmy-react-practice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32345809,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["machine-coding-interview","reactjs"],"created_at":"2026-04-27T16:37:07.611Z","updated_at":"2026-04-27T16:37:08.283Z","avatar_url":"https://github.com/ijas9118.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n# ReactQuest: Frontend Machine Coding Challenges\n\nWelcome to **ReactQuest**, a comprehensive collection of frontend machine coding challenges. This project is a personal archive of my journey mastering React, featuring production-ready solutions to common interview problems.\n\nVisit the live demo: [ReactQuest Website](https://react-quest-theta.vercel.app/)\n\n## 🌟 Key Features\n\n- **Dynamic Challenge Loader**: A custom-built registry system that automatically discovers and loads challenges from the file system.\n- **Interactive Solutions**: Fully functional implementations of common UI patterns.\n- **Documentation**: Each challenge includes a problem statement and requirements, rendered from Markdown.\n- **Modern Stack**: Built with the latest ecosystem tools.\n\n## 🏗️ Architecture\n\nThis project uses a file-system-based routing approach for challenges. Adding a new challenge is as simple as creating a folder.\n\n```mermaid\ngraph TD\n    subgraph FileSystem [\"📂 File System (src/challenges)\"]\n        Dir[Challenge Directory]\n        Index[\"index.tsx (Component)\"]\n        Info[\"info.ts (Metadata)\"]\n        Readme[\"README.md (Docs)\"]\n        \n        Dir --\u003e Index\n        Dir --\u003e Info\n        Dir --\u003e Readme\n    end\n\n    subgraph Core [\"⚙️ Core System\"]\n        Glob[\"import.meta.glob\"]\n        Registry[\"challenge-registry.ts\"]\n    end\n\n    subgraph UI [\"🖥️ Application UI\"]\n        List[\"Challenges List Page\"]\n        Wrapper[\"Challenge Layout\"]\n        Renderer[\"Markdown Renderer\"]\n    end\n\n    Index \u0026 Info \u0026 Readme --\u003e Glob\n    Glob --\u003e Registry\n    Registry --\u003e|List Config| List\n    Registry --\u003e|Lazy Component| Wrapper\n    Registry --\u003e|Docs Content| Renderer\n```\n\n## 📚 Challenge Collection\n\n| Challenge | Difficulty | Links | Description |\n|-----------|------------|-------|-------------|\n| **Counter** | 🟢 Easy | [Live Demo](https://react-quest-theta.vercel.app/challenges/counter) • [Source](./src/challenges/counter) | A simple counter with increment, decrement, and reset capabilities. |\n| **Even or Odd** | 🟢 Easy | [Live Demo](https://react-quest-theta.vercel.app/challenges/even-or-odd) • [Source](./src/challenges/even-or-odd) | Number parity checker with simulated async loading states. |\n| **Chips Input** | 🟢 Easy | [Live Demo](https://react-quest-theta.vercel.app/challenges/chips-input) • [Source](./src/challenges/chips-input) | Tag input component with creation and deletion features. |\n| **Asterisk Validation** | 🟢 Easy | [Live Demo](https://react-quest-theta.vercel.app/challenges/asterisk-field-validation) • [Source](./src/challenges/asterisk-field-validation) | Form validation pattern for required fields. |\n| **FAQ Accordion** | 🟢 Easy | [Live Demo](https://react-quest-theta.vercel.app/challenges/frequently-asked-questions) • [Source](./src/challenges/frequently-asked-questions) | Expandable/collapsible accordion component. |\n| **Countdown Timer** | 🟡 Medium | [Live Demo](https://react-quest-theta.vercel.app/challenges/countdown-timer) • [Source](./src/challenges/countdown-timer) | Fully functional timer with pause/resume and notification support. |\n\n## 💻 Tech Stack\n\n- **Framework**: React 19 + Vite\n- **Language**: TypeScript\n- **Styling**: Tailwind CSS v4\n- **Routing**: React Router v7\n- **Icons**: Lucide React\n- **Markdown**: React Markdown\n\n## 📂 Project Structure\n\n```\nmy-react-practice/\n├── src/\n│   ├── challenges/           # Self-contained challenge modules\n│   │   ├── counter/\n│   │   │   ├── index.tsx     # Solution Component\n│   │   │   ├── info.ts       # Metadata configuration\n│   │   │   └── README.md     # Problem description\n│   │   └── ...\n│   ├── utils/\n│   │   └── challenge-registry.ts # Dynamic loader logic\n│   ├── layout/\n│   │   └── ChallengeLayout.tsx   # Standardized wrapper\n│   └── ...\n```\n\n## 🛠️ Getting Started\n\nFollow these steps to run the project locally.\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/ijas9118/my-react-practice.git\n   cd my-react-practice\n   ```\n\n2. **Install dependencies**\n   ```bash\n   pnpm install\n   ```\n\n3. **Start development server**\n   ```bash\n   pnpm dev\n   ```\n\n4. **Build for production**\n   ```bash\n   pnpm build\n   ```\n\n## 📄 License\n\nThis project is licensed under the MIT License.\n\n---\n*Created by [Ijas](https://github.com/ijas9118) as a personal learning initiative.*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fijas9118%2Fmy-react-practice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fijas9118%2Fmy-react-practice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fijas9118%2Fmy-react-practice/lists"}