{"id":26409697,"url":"https://github.com/metinvn/open-library-search-api","last_synced_at":"2026-05-12T19:03:06.014Z","repository":{"id":199234119,"uuid":"702421228","full_name":"MetinVn/Open-Library-Search-API","owner":"MetinVn","description":"Extensive book,author search engine powered by Open Library","archived":false,"fork":false,"pushed_at":"2024-07-12T16:52:29.000Z","size":748,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-07-13T06:29:18.021Z","etag":null,"topics":["indexdb","mui-material","open-library-api","reactjs","tailwindcss"],"latest_commit_sha":null,"homepage":"https://metinvn.github.io/Open-Library-Search-API/","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/MetinVn.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":"2023-10-09T09:33:34.000Z","updated_at":"2024-07-12T16:52:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"57c109e6-8a30-4ef4-af51-6d4b32c6772b","html_url":"https://github.com/MetinVn/Open-Library-Search-API","commit_stats":null,"previous_names":["metinvn/open-library-search-api"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MetinVn%2FOpen-Library-Search-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MetinVn%2FOpen-Library-Search-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MetinVn%2FOpen-Library-Search-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MetinVn%2FOpen-Library-Search-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MetinVn","download_url":"https://codeload.github.com/MetinVn/Open-Library-Search-API/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244097562,"owners_count":20397638,"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":["indexdb","mui-material","open-library-api","reactjs","tailwindcss"],"created_at":"2025-03-17T19:35:17.708Z","updated_at":"2026-05-12T19:03:06.003Z","avatar_url":"https://github.com/MetinVn.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Open Library Search API Project\n\nA modern React application built with Vite, providing a user-friendly interface to search for authors and books using the Open Library Search API.\n\n---\n\n## Table of Contents\n\n- [Project Overview](#project-overview)\n- [Technology Stack](#technology-stack)\n- [Features](#features)\n- [Project Structure \u0026 Navigation](#project-structure--navigation)\n- [Setup](#setup)\n\n---\n\n## Project Overview\n\nOpen Library Search API Project allows users to search for books and authors, view detailed information, and interact with a responsive, dark-mode-enabled UI. The app leverages Material-UI for styling and IndexedDB for efficient local data storage.\n\n---\n\n## Technology Stack\n\n- **React** – UI library for building interactive interfaces\n- **Vite** – Fast development/build tool\n- **Material-UI** – Component library for consistent, accessible UI\n- **Tailwind CSS** – Utility-first CSS framework for rapid styling\n- **Open Library Search API** – Public API for books and authors data\n- **IndexedDB (via idb)** – Client-side storage for caching search results\n- **React Router** – Routing and navigation\n\n---\n\n## Features\n\n- **Search Authors**: Find authors by name and view their details.\n- **Search Books**: Search for books and see author, title, and reading stats.\n- **Author Details**: View author bio, birth date, Wikipedia, and official links.\n- **Book Details**: See author, title, and reading statistics (want to read, already read, currently reading).\n- **IndexedDB Caching**: Search results are cached locally for performance.\n- **Material-UI \u0026 Tailwind Styling**: Responsive, accessible, and themeable UI.\n- **Dark Mode Support**: Toggle between light and dark themes.\n- **Responsive Design**: Works well on desktop and mobile devices.\n- **Efficient Data Handling**: Handles large datasets and provides sorting/filtering.\n\n---\n\n## Project Structure \u0026 Navigation\n\nThe project is organized as follows:\n\n```\nsrc/\n  App.jsx                # Main app component\n  index.css              # Tailwind CSS imports\n  main.jsx               # Entry point, sets up routing\n  Func/\n    CalcCounts.jsx       # Utility functions for count formatting/styling\n  layouts/\n    Sidebar.jsx          # Sidebar navigation component\n    Welcome.jsx          # Welcome/landing page component\n  pages/\n    AuthorInfo.jsx       # Author detail page\n    AuthorSearch.jsx     # Author search page\n    BookSearch.jsx       # Book search page\n    Home.jsx             # Home page (renders Welcome)\n```\n\n- **Navigation**:\n  - The app uses React Router for navigation.\n  - The sidebar (`Sidebar.jsx`) provides quick access to book and author search pages.\n  - The welcome screen (`Welcome.jsx`) is shown on the home route (`/`).\n  - Search results and details are displayed on their respective pages under `/books/`, `/author/`, and `/author/:authorKey`.\n\n---\n\n## Setup\n\nTo get started with the project, follow these steps:\n\n1. **Clone the repository:**\n\n   ```sh\n   git clone https://github.com/MetinVn/Open-Library-Search-API.git\n   cd Open-Library-Search-API\n   ```\n\n2. **Install dependencies:**\n\n   ```sh\n   npm install\n   ```\n\n3. **Run the development server:**\n\n   ```sh\n   npm run dev\n   ```\n\n4. **Build for production:**\n\n   ```sh\n   npm run build\n   ```\n\n---\n\nFor more details, see the source files in the [`src/`](src) directory.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetinvn%2Fopen-library-search-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmetinvn%2Fopen-library-search-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetinvn%2Fopen-library-search-api/lists"}