{"id":26086236,"url":"https://github.com/techjmi/shopping","last_synced_at":"2026-06-01T04:01:52.674Z","repository":{"id":278378551,"uuid":"935415878","full_name":"techjmi/shopping","owner":"techjmi","description":"website","archived":false,"fork":false,"pushed_at":"2025-02-19T19:01:03.000Z","size":73,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-19T12:27:54.761Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://ecommerce-jxvc.onrender.com","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/techjmi.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-02-19T12:09:18.000Z","updated_at":"2025-04-08T08:03:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"483797fb-d468-4b77-991a-456185cf23ca","html_url":"https://github.com/techjmi/shopping","commit_stats":null,"previous_names":["techjmi/shopping"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/techjmi/shopping","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techjmi%2Fshopping","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techjmi%2Fshopping/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techjmi%2Fshopping/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techjmi%2Fshopping/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/techjmi","download_url":"https://codeload.github.com/techjmi/shopping/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techjmi%2Fshopping/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33759178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"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-03-09T06:50:08.184Z","updated_at":"2026-06-01T04:01:52.669Z","avatar_url":"https://github.com/techjmi.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Shopping Cart App 🛒\n\nThis is a React-based shopping cart application that fetches product data from a dummy API and allows users to add/remove items from their cart. The application features product filtering, sorting, quick view, and toast notifications.\n\n## 🚀 Tech Stack\n\n- **Frontend:** React.js (React 19), Vite, Tailwind CSS\n- **State Management:** Redux Toolkit, Redux Persist\n- **Routing:** React Router DOM\n- **API Handling:** Axios\n- **UI Components:** React Icons, React Responsive Carousel\n- **Notifications:** React Toastify\n\n## 📌 Features\n\n- 📦 **Product Listing:** Displays a list of products fetched from an API.\n- 🔥 **Flash Deals Section:** Shows limited-time deals.\n- 🔄 **Carousel Slider:** Highlights featured products.\n- 🛒 **Shopping Cart:** Users can add/remove products and update quantities.\n- 🔍 **Quick View:** View product details without navigating away.\n- 📊 **Sorting \u0026 Filtering:** Products can be filtered by category and price.\n- 🔔 **Toast Notifications:** Provides feedback for actions (e.g., item added to cart).\n- ⚡ **Lazy Loading \u0026 Suspense:** Improves performance.\n\n## 🏗 Folder Structure\n\n```\n/src\n├── assets/                 # Static assets (images, icons, etc.)\n├── components/             # UI components (Navbar, ProductCard, etc.)\n│   ├── CarouselPart.jsx\n│   ├── FlashDeals.jsx\n│   ├── Navbar.jsx\n│   ├── ProductCard.jsx\n│   ├── Products.jsx\n│   ├── QuickView.jsx\n├── pages/                  # Page components (Home, Cart)\n│   ├── Cart.jsx\n│   ├── Home.jsx\n├── redux/                  # Redux store and slices\n│   ├── cartSlice.js\n│   ├── store.js\n├── skeleton/               # Skeleton loaders for UI components\n│   ├── CardSkeleton.jsx\n│   ├── FlashDealsSkeleton.jsx\n├── App.css                 # Global styles\n├── App.jsx                 # Main application file\n├── index.css               # CSS for styling\n└── index.js                # Entry point\n```\n\n## 🛠️ Installation \u0026 Setup\n\n1. Clone the repository:\n\n   ```sh\n   git clone https://github.com/techjmi/shopping\n   cd shopping-cart\n   ```\n\n2. Install dependencies:\n\n   ```sh\n   npm install\n   ```\n\n3. Start the development server:\n\n   ```sh\n   npm run dev\n   ```\n\n4. Open [http://localhost:5173](http://localhost:5173) in your browser.\n\n## 🌐 API Usage\n\n- The project fetches product data from [DummyJSON API](https://dummyjson.com).\n- API used: `https://dummyjson.com/products`\n- Cart data: `https://dummyjson.com/carts/1`\n\n## 🔧 Redux State Management\n\n- **cartSlice.js**: Manages cart state (add, remove, update quantity).\n- **store.js**: Configures Redux store and Redux Persist for state persistence.\n\n## 🎯 Future Enhancements\n\n- ✅ Authentication \u0026 User Accounts\n- ✅ Payment Integration (Stripe)\n- ✅ Wishlist \u0026 Order History\n- ✅ Dark Mode\n\n---\n\n### 📜 License\n\nThis project is licensed under the MIT License.\n\n---\n\n**Author:** Md Shamim Akhter  \n**GitHub:** [techjmi](https://github.com/techjmi)  \n**Portfolio:** [Visit Here](https://shamim-portfolio-u1yp.onrender.com)  \n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechjmi%2Fshopping","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechjmi%2Fshopping","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechjmi%2Fshopping/lists"}