{"id":24149288,"url":"https://github.com/rawdaymohamed/myreads","last_synced_at":"2026-05-06T03:34:01.667Z","repository":{"id":134703267,"uuid":"437953660","full_name":"rawdaymohamed/MyReads","owner":"rawdaymohamed","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-19T14:16:58.000Z","size":4773,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-08T09:44:55.656Z","etag":null,"topics":["javascript","nodejs","react","react-router","reactjs","udacity","udacity-nanodegree"],"latest_commit_sha":null,"homepage":"https://6764190014cee31ea1de4a95--myreads-rawdaymohamed.netlify.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/rawdaymohamed.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-12-13T16:54:49.000Z","updated_at":"2025-04-20T01:32:17.000Z","dependencies_parsed_at":"2024-12-19T13:38:35.798Z","dependency_job_id":"559fd63b-8b98-444e-955b-ae1a9d817c38","html_url":"https://github.com/rawdaymohamed/MyReads","commit_stats":null,"previous_names":["rawda-yasser/myreads","rawdaymohamed/myreads","im-rawdayasser/myreads"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rawdaymohamed/MyReads","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rawdaymohamed%2FMyReads","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rawdaymohamed%2FMyReads/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rawdaymohamed%2FMyReads/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rawdaymohamed%2FMyReads/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rawdaymohamed","download_url":"https://codeload.github.com/rawdaymohamed/MyReads/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rawdaymohamed%2FMyReads/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32677928,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"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":["javascript","nodejs","react","react-router","reactjs","udacity","udacity-nanodegree"],"created_at":"2025-01-12T08:37:39.188Z","updated_at":"2026-05-06T03:34:01.640Z","avatar_url":"https://github.com/rawdaymohamed.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MyReads\n\nMyReads is a front end Web app built in React js. It allows users to categorize books into 3 categories, called shelves (currently reading, want to read, and read).\nThe application interacts with an [api](\"https://reactnd-books-api.udacity.com\") to get books names, authors, and images.\n\n\u003cbr/\u003e\n\n![alt text](./imgs/myreads-rawdaymohamed-freelancer-home1.png)\n\u003cbr/\u003e\n\n![alt text](./imgs/myreads-rawdaymohamed-freelancer-search.png)\n\n## YouTube Demo\n\n[Project Link](https://www.youtube.com/watch?v=oZ87UINeqbA)\n\n## **Node version**\n\nPlease make sure you are using node.js version: **`v10.24.1`**\n\n## TL;DR\n\nTo get started developing right away:\n\n- install all project dependencies with `npm install`\n- start the development server with `npm start`\n\n## Backend Server\n\nTo simplify your development process, we've provided a backend server for you to develop against. The provided file [`BooksAPI.js`](src/BooksAPI.js) contains the methods you will need to perform necessary operations on the backend:\n\n- [`getAll`](#getall)\n- [`update`](#update)\n- [`search`](#search)\n\n### `getAll`\n\nMethod Signature:\n\n```js\ngetAll();\n```\n\n- Returns a Promise which resolves to a JSON object containing a collection of book objects.\n- This collection represents the books currently in the bookshelves in your app.\n\n### `update`\n\nMethod Signature:\n\n```js\nupdate(book, shelf);\n```\n\n- book: `\u003cObject\u003e` containing at minimum an `id` attribute\n- shelf: `\u003cString\u003e` contains one of [\"wantToRead\", \"currentlyReading\", \"read\"]\n- Returns a Promise which resolves to a JSON object containing the response data of the POST request\n\n### `search`\n\nMethod Signature:\n\n```js\nsearch(query);\n```\n\n- query: `\u003cString\u003e`\n- Returns a Promise which resolves to a JSON object containing a collection of a maximum of 20 book objects.\n- These books do not know which shelf they are on. They are raw results only. You'll need to make sure that books have the correct state while on the search page.\n\n## Important\n\nThe backend API uses a fixed set of cached search results and is limited to a particular set of search terms, which can be found in [SEARCH_TERMS.md](SEARCH_TERMS.md). That list of terms are the _only_ terms that will work with the backend, so don't be surprised if your searches for Basket Weaving or Bubble Wrap don't come back with any results.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frawdaymohamed%2Fmyreads","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frawdaymohamed%2Fmyreads","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frawdaymohamed%2Fmyreads/lists"}