{"id":25081755,"url":"https://github.com/muuhesham/ecommerce-website","last_synced_at":"2026-04-06T01:33:39.561Z","repository":{"id":274667544,"uuid":"915835825","full_name":"muuhesham/ecommerce-website","owner":"muuhesham","description":"NTI Graduation Project: A MEAN Stack e-commerce website (GEN-Z STORE)","archived":false,"fork":false,"pushed_at":"2025-01-28T18:09:41.000Z","size":7425,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T14:25:14.986Z","etag":null,"topics":["angular","backend","ecommerce-website","expressjs","frontend","mean-stack","mongodb","nodejs","restful-api"],"latest_commit_sha":null,"homepage":"","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/muuhesham.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":"2025-01-12T23:17:39.000Z","updated_at":"2025-01-28T18:21:35.000Z","dependencies_parsed_at":"2025-04-01T09:53:02.106Z","dependency_job_id":null,"html_url":"https://github.com/muuhesham/ecommerce-website","commit_stats":null,"previous_names":["muuhesham/ecommerce-website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/muuhesham/ecommerce-website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muuhesham%2Fecommerce-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muuhesham%2Fecommerce-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muuhesham%2Fecommerce-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muuhesham%2Fecommerce-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/muuhesham","download_url":"https://codeload.github.com/muuhesham/ecommerce-website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muuhesham%2Fecommerce-website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31456659,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"ssl_error","status_checked_at":"2026-04-05T21:22:51.943Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["angular","backend","ecommerce-website","expressjs","frontend","mean-stack","mongodb","nodejs","restful-api"],"created_at":"2025-02-07T05:18:21.454Z","updated_at":"2026-04-06T01:33:39.556Z","avatar_url":"https://github.com/muuhesham.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NTI GRADUATION PROJECT - GEN-Z STORE\n\nWelcome to **GEN-Z STORE** – A e-commerce website built using the MEAN stack, designed for Gen-Z customers. represents a culmination of the skills and knowledge gained throughout the training. 🚀\n\n---\n\n## 💠 Technologies Used\nThis project is powered by the **MEAN Stack**:\n- **Node.js**\n- **Express.js**\n- **MongoDB**\n- **Angular**\n\n---\n\n## ✨ Features\n- **Restful APIs**: All operations exposed as RESTful APIs (products, user authentication, etc.).\n- **Authentication**: Secure user sign-up, login, and logout with **bcrypt** for password hashing.\n- **Authorization**: Role-based access control (Admin vs Customer).\n- **JWT**: Token-based authentication using JWT.\n- **CRUD Operations**:\n  - **Products**: `GET`, `POST`, `PUT`, `DELETE` for managing products.\n  - **Categories**: Organize products by categories.\n- **File Upload**: Support for uploading product images.\n- **Simple Dashboard**: Admin dashboard to manage products, orders, and users.\n\n---\n## 🖼️ Screenshots from the website\n### Homepage\n![Screenshot 2025-01-28 192907](https://github.com/user-attachments/assets/62736dbb-7e54-4c7f-9900-dec90434fca9)\n\n### Products Page\n![Screenshot 2025-01-28 192927](https://github.com/user-attachments/assets/2c422f31-1fd9-4253-855f-d624ed2577a0)\n\n---\n\n## ⚙️ Installation\n\nFollow these steps to run the project locally:\n\n### 1️⃣ Clone the Repository\n```bash\ngit clone https://github.com/muuhesham/ecommerce-website.git\ncd ecommerce-website\n```\n\n### 2️⃣ Install Dependencies\n```bash\n# For Backend\ncd backend\nnpm install\n\n# For Frontend\ncd ../frontend\nnpm install\n```\n\n### 3️⃣ Start the Application\n```bash\n# Backend\ncd backend\nnpm start\n\n# Frontend\ncd ../frontend\nng serve\n```\n\n### 4️⃣ Open the Website\nNavigate to [http://localhost:4200](http://localhost:4200) to view the website.\n\n---\n\n## 🐂 Project Structure\n\n### Backend\n```\nbackend/\n├── Routes/\n├── Models/\n├── Controllers/\n├── Util/\n├── imgs/\n├── Config/\n└── app.js\n\n```\n\n### Frontend\n```\nfrontend/\n├── src/\n    ├── app/\n        ├── components/\n        ├── services/\n        └── app.module.ts\n```\n\n---\n\n## 🖋️ Feedback\nIf you have any feedback or collaboration, feel free to reach out at [email](mailto:muhammedhesham488@gmail.com) or [Linkedin](https://www.linkedin.com/in/muhammed-hesham48/).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuuhesham%2Fecommerce-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuuhesham%2Fecommerce-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuuhesham%2Fecommerce-website/lists"}