{"id":26610308,"url":"https://github.com/divith123/e-commerce","last_synced_at":"2026-02-25T06:41:48.112Z","repository":{"id":278422442,"uuid":"914224529","full_name":"Divith123/E-Commerce","owner":"Divith123","description":"E-Commerce is a modern, full-featured online shopping platform built with Next.js, React, Prisma, and Tailwind CSS. It offers a seamless user experience with secure authentication, product browsing, cart management, and order processing.This project is ideal for learning or launching an online store.","archived":false,"fork":false,"pushed_at":"2025-02-19T15:39:19.000Z","size":19894,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-29T04:40:45.285Z","etag":null,"topics":["ecommerce","nextjs","sql","typescript"],"latest_commit_sha":null,"homepage":"","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/Divith123.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}},"created_at":"2025-01-09T07:21:57.000Z","updated_at":"2025-03-04T09:12:22.000Z","dependencies_parsed_at":"2025-02-19T18:15:50.914Z","dependency_job_id":null,"html_url":"https://github.com/Divith123/E-Commerce","commit_stats":null,"previous_names":["divith123/e-commerce"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Divith123/E-Commerce","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Divith123%2FE-Commerce","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Divith123%2FE-Commerce/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Divith123%2FE-Commerce/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Divith123%2FE-Commerce/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Divith123","download_url":"https://codeload.github.com/Divith123/E-Commerce/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Divith123%2FE-Commerce/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29812622,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T05:36:42.804Z","status":"ssl_error","status_checked_at":"2026-02-25T05:36:31.934Z","response_time":61,"last_error":"SSL_read: 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":["ecommerce","nextjs","sql","typescript"],"created_at":"2025-03-24T01:39:03.665Z","updated_at":"2026-02-25T06:41:48.084Z","avatar_url":"https://github.com/Divith123.png","language":"TypeScript","readme":"# E-Commerce Application\n\nA comprehensive and scalable E-Commerce platform built with modern web technologies.\n\n## Table of Contents\n\n- [Introduction](#introduction)\n- [Features](#features)\n- [Demo](#demo)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Project Structure](#project-structure)\n- [Technologies Used](#technologies-used)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Introduction\n\nThis project is a full-featured E-Commerce application designed to provide a seamless shopping experience. It includes functionalities like product browsing, user authentication, shopping cart management, and order processing.\n\n## Features\n\n- **User Authentication**: Secure login and registration system.\n- **Product Management**: Browse, search, and filter products.\n- **Shopping Cart**: Add, remove, and manage cart items.\n- **Order Processing**: Place orders and view order history.\n- **Responsive Design**: Optimized for various devices.\n\n## Installation\n\nTo set up the project locally:\n\n1. **Clone the repository**:\n   ```bash\n   git clone https://github.com/Divith123/E-Commerce.git\n   cd E-Commerce\n   ```\n\n2. **Install dependencies**:\n   ```bash\n   npm install\n   ```\n\n3. **Set up environment variables**:\n   - Create a `.env` file in the root directory.\n   - Add necessary environment variables (e.g., database connection strings, API keys).\n\n4. **Run database migrations** (if applicable):\n   ```bash\n   npx prisma migrate dev\n   ```\n\n5. **Start the development server**:\n   ```bash\n   npm run dev\n   ```\n\n   The application should now be running on `http://localhost:3000`.\n\n## Usage\n\n- **Register/Login**: Create a new account or log in with existing credentials.\n- **Browse Products**: View the list of available products.\n- **Add to Cart**: Select products and add them to your shopping cart.\n- **Checkout**: Review the cart and proceed to place an order.\n- **Order History**: View past orders and their statuses.\n\n## Project Structure\n\n```\n|-- app/\n|-- components/\n|-- helpers/\n|-- lib/\n|-- prisma/\n|-- public/\n|-- server/\n|-- utils/\n|-- .eslintrc.json\n|-- .gitignore\n|-- LICENSE\n|-- README.md\n|-- package.json\n|-- tailwind.config.ts\n|-- tsconfig.json\n|-- next.config.mjs\n```\n\n- `app/`: Main application logic.\n- `components/`: Reusable UI components.\n- `helpers/`: Utility functions.\n- `lib/`: Shared libraries and modules.\n- `prisma/`: Database schema and migrations.\n- `public/`: Static assets.\n- `server/`: Backend API and server-side logic.\n- `utils/`: Miscellaneous utilities.\n\n## Technologies Used\n\n- **Next.js**: React framework for server-side rendering.\n- **React**: JavaScript library for building user interfaces.\n- **Tailwind CSS**: Utility-first CSS framework.\n- **Prisma**: ORM for database management.\n- **TypeScript**: Typed superset of JavaScript.\n- **ESLint**: Linting tool for code quality.\n- **PostgreSQL/MySQL**: Relational database systems.\n\n## Contributing\n\nContributions are welcome! To contribute:\n\n1. Fork the repository.\n2. Create a new branch:\n   ```bash\n   git checkout -b feature/your-feature-name\n   ```\n3. Make your changes and commit them:\n   ```bash\n   git commit -m 'Add some feature'\n   ```\n4. Push to the branch:\n   ```bash\n   git push origin feature/your-feature-name\n   ```\n5. Open a pull request.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdivith123%2Fe-commerce","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdivith123%2Fe-commerce","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdivith123%2Fe-commerce/lists"}