{"id":21135719,"url":"https://github.com/furkan-dogu/library_be","last_synced_at":"2026-04-07T08:01:37.561Z","repository":{"id":230244719,"uuid":"778843816","full_name":"furkan-dogu/Library_BE","owner":"furkan-dogu","description":"This project constitutes the backend part of a book management system. It provides RESTful APIs using Express.js and performs basic operations on books over an MongoDB database.","archived":false,"fork":false,"pushed_at":"2024-05-01T16:05:14.000Z","size":161,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-19T09:46:05.035Z","etag":null,"topics":["cors","dotenv","express-async-errors","express-js","javascript","mongoose","nodejs","redoc-express","swagger-ui-express"],"latest_commit_sha":null,"homepage":"https://library-be-two.vercel.app/","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/furkan-dogu.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":"2024-03-28T14:17:03.000Z","updated_at":"2024-05-01T16:05:18.000Z","dependencies_parsed_at":"2024-03-28T19:56:48.735Z","dependency_job_id":"4f5372ea-1bb4-4d1b-8118-1cbc0dc44e41","html_url":"https://github.com/furkan-dogu/Library_BE","commit_stats":null,"previous_names":["furkan-dogu/library_management_system","furkan-dogu/library_be"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/furkan-dogu/Library_BE","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkan-dogu%2FLibrary_BE","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkan-dogu%2FLibrary_BE/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkan-dogu%2FLibrary_BE/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkan-dogu%2FLibrary_BE/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/furkan-dogu","download_url":"https://codeload.github.com/furkan-dogu/Library_BE/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkan-dogu%2FLibrary_BE/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31504897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["cors","dotenv","express-async-errors","express-js","javascript","mongoose","nodejs","redoc-express","swagger-ui-express"],"created_at":"2024-11-20T06:58:16.624Z","updated_at":"2026-04-07T08:01:37.544Z","avatar_url":"https://github.com/furkan-dogu.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Book Management System\n\nThis project constitutes the backend part of a book management system. It provides RESTful APIs using Express.js and performs basic operations on books over an MongoDB database.\n\n### ERD\n\n![ERD](./erd.png)\n\n## Table of Contents\n\n- [Technologies Used](#technologies-used)\n- [Documentation](#documentation)\n- [Usage](#usage)\n- [Project Skeleton](#project-skeleton)\n\n## Live Demo\n\n[Library API](https://library-be-two.vercel.app/)\n\n## Technologies Used\n\n- **Express.js**: A minimalist web framework for Node.js used for building the RESTful API endpoints.\n- **dotenv**: A module used for loading environment variables from a `.env` file into `process.env`.\n- **express-async-errors**: A module used for handling asynchronous errors in Express.js middleware and route handlers.\n- **MongoDB**: A NoSQL database program, using JSON-like documents with optional schema.\n- **Mongoose**: A MongoDB object modeling tool designed to work in an asynchronous environment. It provides a straight-forward, schema-based solution to model your application data.\n\n### Documentation\n\n- Swagger UI: [https://library-be-two.vercel.app/documents/swagger](https://library-be-two.vercel.app/documents/swagger)\n- Redoc: [https://library-be-two.vercel.app/documents/redoc](https://library-be-two.vercel.app/documents/redoc)\n- JSON Documentation: [https://library-be-two.vercel.app/documents/json](https://library-be-two.vercel.app/documents/json)\n\n## Usage\n\nYou can perform basic operations on books such as listing, adding new books, updating, and deleting using this API. Operations can be performed as follows:\n\n- **Listing**: List all books using the `GET /` endpoint.\n- **Creating**: Add a new book using the `POST /` endpoint.\n- **Reading**: View a specific book using the GET `/:id` endpoint.\n- **Updating**: Update a book using either the `PUT /:id` or `PATCH /:id` endpoints.\n- **Deleting**: Delete a book using the `DELETE /:id` endpoint. \n\n## Project Skeleton\n\n```\nBook Management System API (folder) \n│\n├── src\n│    ├── configs\n│    │     └── dbConnection.js\n│    ├── controllers                \n│    │     └── book.controller.js \n│    ├── middlewares   \n│    │     └── errorHandler.js \n│    ├── models                \n│    │     └── book.model.js\n│    └── routes                \n│          └── book.router.js\n├── .env\n├── .gitignore\n├── index.js\n├── package.json\n└── README.md\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffurkan-dogu%2Flibrary_be","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffurkan-dogu%2Flibrary_be","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffurkan-dogu%2Flibrary_be/lists"}