{"id":29013297,"url":"https://github.com/ahnafmottaki/open-library","last_synced_at":"2026-04-02T02:50:06.845Z","repository":{"id":301097283,"uuid":"1008123863","full_name":"ahnafmottaki/open-library","owner":"ahnafmottaki","description":"A full-stack gardening tips platform where users can explore books, borrow books, connect with others. The site supports authentication, CRUD functionalities, filtering, and user-specific experiences.","archived":false,"fork":false,"pushed_at":"2025-06-25T11:32:12.000Z","size":1465,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-25T12:52:42.786Z","etag":null,"topics":["css3","daisyui","express","firebase","html5","nodejs","react","react-router","tailwindcss"],"latest_commit_sha":null,"homepage":"https://openlibrary-31653.web.app/","language":"HTML","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/ahnafmottaki.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}},"created_at":"2025-06-25T04:23:02.000Z","updated_at":"2025-06-25T11:32:15.000Z","dependencies_parsed_at":"2025-06-25T13:02:58.096Z","dependency_job_id":null,"html_url":"https://github.com/ahnafmottaki/open-library","commit_stats":null,"previous_names":["freecodejunction/open-library","ahnafmottaki/open-library"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ahnafmottaki/open-library","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahnafmottaki%2Fopen-library","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahnafmottaki%2Fopen-library/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahnafmottaki%2Fopen-library/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahnafmottaki%2Fopen-library/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ahnafmottaki","download_url":"https://codeload.github.com/ahnafmottaki/open-library/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahnafmottaki%2Fopen-library/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261937078,"owners_count":23232852,"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","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":["css3","daisyui","express","firebase","html5","nodejs","react","react-router","tailwindcss"],"created_at":"2025-06-25T19:10:43.342Z","updated_at":"2025-12-30T20:06:43.835Z","avatar_url":"https://github.com/ahnafmottaki.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌐 Open Library\n\n![Open Library](open-library-image.png)\n\n## 🧾 Overview\n\nOpen Lobrary is a full-stack library platform where users can explore books, borrow books, connect with others. The site supports authentication, CRUD functionalities, filtering, and user-specific experiences.\n\n---\n\n## Live site \u0026 Relavent links\n\n**Live Site URL**: [https://openlibrary-31653.web.app/](https://openlibrary-31653.web.app/)\n\n\n## 🚀 Tech Stack\n\n### 🔹 Frontend\n\n- React.js\n- Tailwind CSS\n- React Router DOM\n- Firebase Authentication\n\n### 🔹 Backend\n\n- Node.js\n- Express.js\n- MongoDB\n- JWT (JSON Web Token)\n\n---\n\n## 🔑 Core Features\n\n- 🔐 User Authentication (Login/Register with Firebase)\n- 📦 Dynamic Content Fetching (via API)\n- 🧩 JWT-Protected Routes\n- 🛠️ REST Api\n- 📱 Responsive Mobile-first Design\n\n---\n\n## 📦 Dependencies\n\n### Client (`/client`)\n\n```json\n{\n  \"react\": \"^18.x.x\",\n  \"react-dom\": \"^18.x.x\",\n  \"react-router-dom\": \"^6.x.x\",\n  \"axios\": \"^1.x.x\",\n  \"tailwindcss\": \"^3.x.x\",\n  \"firebase\": \"^10.x.x\"\n}\n```\n\n### Server (`/server`)\n\n```json\n{\n  \"express\": \"^4.x.x\",\n  \"mongoose\": \"^7.x.x\",\n  \"cors\": \"^2.x.x\",\n  \"dotenv\": \"^16.x.x\",\n  \"jsonwebtoken\": \"^9.x.x\"\n}\n```\n\n## 💻 How to Run Locally\n\n### 1. Clone the Repo\n\n```bash\ngit clone https://github.com/FreeCodeJunction/open-library.git\ncd open-library\n```\n\n### 2. Install Dependencies\n\n- client\n\n```bash\ncd client\nnpm install\n```\n\n- server\n\n```bash\ncd ../server\nnpm install\n```\n\n### 3. Setup Environment Variables\n\n- client\n\n```\nVITE_FIREBASE_API_KEY=your_api_key\nVITE_FIREBASE_AUTH_DOMAIN=your_auth_domain\n```\n\n- server\n\n```\nPORT=5000\nMONGODB_URI=your_mongo_uri\nJWT_SECRET=your_jwt_secret\n```\n\n### 4. Start Servers\n\n- server\n\n```bash\ncd server\nnpm start\n```\n\n- client\n\n```bash\ncd ../client\nnpm run dev\n```\n\n### 5. Visit\n\n```\nhttp://localhost:3000\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahnafmottaki%2Fopen-library","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahnafmottaki%2Fopen-library","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahnafmottaki%2Fopen-library/lists"}