{"id":31209881,"url":"https://github.com/nitingoley/product-explorer-app","last_synced_at":"2025-09-21T03:15:08.857Z","repository":{"id":315257908,"uuid":"1058588044","full_name":"nitingoley/product-explorer-app","owner":"nitingoley","description":"A full-stack web application for browsing, filtering, and viewing product details from the DummyJSON API.","archived":false,"fork":false,"pushed_at":"2025-09-17T14:37:07.000Z","size":73,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-17T16:42:04.078Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/nitingoley.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-17T09:34:59.000Z","updated_at":"2025-09-17T14:37:10.000Z","dependencies_parsed_at":"2025-09-17T16:42:07.399Z","dependency_job_id":"a2413c08-7e64-4968-80db-04dbc0251504","html_url":"https://github.com/nitingoley/product-explorer-app","commit_stats":null,"previous_names":["nitingoley/product-explorer-app"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/nitingoley/product-explorer-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitingoley%2Fproduct-explorer-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitingoley%2Fproduct-explorer-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitingoley%2Fproduct-explorer-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitingoley%2Fproduct-explorer-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nitingoley","download_url":"https://codeload.github.com/nitingoley/product-explorer-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitingoley%2Fproduct-explorer-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276187923,"owners_count":25599889,"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","status":"online","status_checked_at":"2025-09-21T02:00:07.055Z","response_time":72,"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":[],"created_at":"2025-09-21T03:15:07.234Z","updated_at":"2025-09-21T03:15:08.848Z","avatar_url":"https://github.com/nitingoley.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Product Explorer App\n\nA modern, full-stack web application that provides an intuitive interface for exploring and managing product data through the DummyJSON API. View the live demo at [Product Explorer](https://product-explorer-app-2yx1.vercel.app/).\n\n## ✨ Key Features\n\n- **Interactive Product Grid**\n  - Responsive masonry layout\n  - Smooth loading animations\n  - Hover effects with GSAP\n  - Product cards with image previews\n\n- **Advanced Filtering \u0026 Sorting**\n  - Category-based filtering\n  - Multi-parameter sorting\n  - Price range filtering\n  - Real-time search functionality\n\n- **Performance Optimizations**\n  - Server-side caching\n  - Lazy loading images\n  - Optimized API requests\n  - Client-side data persistence\n\n- **Responsive Design**\n  - Mobile-first approach\n  - Tablet \u0026 desktop layouts\n  - Accessible interface\n  - Touch-friendly interactions\n\n## 🛠️ Tech Stack\n\n### Frontend\n- Next.js 14 (App Router)\n- TypeScript\n- Tailwind CSS\n- GSAP Animations\n- Axios\n\n### Backend\n- Node.js\n- Express.js\n- Node Cache\n- CORS middleware\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Node.js (v18.0.0 or higher)\n- npm or yarn package manager\n- Git\n\n### Installation Steps\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/nitingoley/product-explorer-app.git\n   cd product-explorer-app\n   ```\n\n2. Install dependencies:\n   ```bash\n   # Install frontend dependencies\n   cd frontend\n   npm install\n\n   # Install backend dependencies\n   cd ../backend\n   npm install\n   ```\n\n3. Configure environment variables:\n   ```bash\n   # Frontend (.env.local)\n   NEXT_PUBLIC_API_URL=http://localhost:5000\n\n   # Backend (.env)\n   PORT=5000\n   ALLOWED_ORIGINS=http://localhost:3000\n   ```\n\n4. Start the development servers:\n   ```bash\n   # Start backend server\n   cd backend\n   npm run dev\n\n   # Start frontend server (new terminal)\n   cd frontend\n   npm run dev\n   ```\n\n5. Access the application:\n   - Frontend: http://localhost:3000\n   - Backend API: http://localhost:5000\n\n## 📝 Available Scripts\n\n- `npm run dev` - Start development server\n- `npm run build` - Create production build\n- `npm run start` - Start production server\n- `npm run lint` - Run ESLint\n- `npm run test` - Run test suite\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit changes (`git commit -m 'Add amazing feature'`)\n4. Push to branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnitingoley%2Fproduct-explorer-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnitingoley%2Fproduct-explorer-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnitingoley%2Fproduct-explorer-app/lists"}