{"id":31757060,"url":"https://github.com/kunalbishwal/librora","last_synced_at":"2026-07-19T01:31:48.743Z","repository":{"id":318077173,"uuid":"1069909392","full_name":"KunalBishwal/Librora","owner":"KunalBishwal","description":"Librora is a full-stack MERN Book Review Platform","archived":false,"fork":false,"pushed_at":"2025-10-04T22:35:22.000Z","size":97,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-13T21:46:00.167Z","etag":null,"topics":["full-stack","mern-stack","programming","website"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/KunalBishwal.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-04T21:28:51.000Z","updated_at":"2025-10-05T03:10:32.000Z","dependencies_parsed_at":"2025-10-08T23:31:09.430Z","dependency_job_id":null,"html_url":"https://github.com/KunalBishwal/Librora","commit_stats":null,"previous_names":["kunalbishwal/librora"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KunalBishwal/Librora","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KunalBishwal%2FLibrora","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KunalBishwal%2FLibrora/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KunalBishwal%2FLibrora/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KunalBishwal%2FLibrora/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KunalBishwal","download_url":"https://codeload.github.com/KunalBishwal/Librora/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KunalBishwal%2FLibrora/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35637763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-18T02:00:07.223Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["full-stack","mern-stack","programming","website"],"created_at":"2025-10-09T19:47:02.987Z","updated_at":"2026-07-19T01:31:48.736Z","avatar_url":"https://github.com/KunalBishwal.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📚 Librora\n\n**Librora** is a full-stack **MERN Book Review Platform** where users can sign up, log in, add books, and share reviews with ratings.  \nBuilt with **MongoDB, Express, React, and Node.js**, Librora focuses on clean UI, smooth animations, and secure authentication — giving users a seamless reading and reviewing experience.\n\n---\n\n## 🚀 Tech Stack\n\n**Frontend:**\n- React + TypeScript\n- Vite\n- Tailwind CSS\n- Axios\n- React Router\n- Framer Motion (animations)\n- Lucide Icons\n\n**Backend:**\n- Node.js + Express\n- MongoDB + Mongoose\n- JWT Authentication\n- bcrypt Password Hashing\n- MVC Architecture\n\n---\n\n## 🎯 Core Features\n\n✅ **User Authentication** (JWT + bcrypt)  \n- Signup \u0026 Login with encrypted passwords  \n- Protected routes using JWT middleware  \n\n✅ **Book Management**  \n- Add, edit, and delete books  \n- Paginated list (5 books per page)  \n- Only the book creator can modify/delete their books  \n\n✅ **Review System**  \n- Add, edit, and delete reviews  \n- Ratings (1–5 stars) + review text  \n- Dynamic average rating calculation  \n\n✅ **Search \u0026 Filters**  \n- Search books by title, author, or genre  \n- Instant search with smooth loading animations  \n\n✅ **Frontend Integration**  \n- Modern, responsive design  \n- Context-based auth management  \n- Debounced search for smoother UX  \n\n✅ **Bonus Features (Optional)**  \n- Profile Page: View user’s books \u0026 reviews  \n- Charts for rating distribution (Recharts)  \n- Dark/Light Mode toggle  \n- Deployed via Render (backend) \u0026 Vercel (frontend)\n\n---\n\n## 🧩 Folder Structure\n ``` bash\nLibrora/\n├── backend/\n│ ├── controllers/\n│ ├── middleware/\n│ ├── models/\n│ ├── routes/\n│ ├── utils/\n│ ├── server.js\n│ ├── package.json\n│ └── .env\n│\n├── frontend/\n│ ├── src/\n│ │ ├── components/\n│ │ ├── contexts/\n│ │ ├── hooks/\n│ │ ├── pages/\n│ │ ├── App.tsx\n│ │ ├── main.tsx\n│ │ └── vite-env.d.ts\n│ ├── public/\n│ ├── package.json\n│ ├── tailwind.config.ts\n│ ├── vite.config.ts\n│ └── tsconfig.json\n│\n├── .gitignore\n├── README.md\n└── package.json\n```\n\n\n---\n\n## ⚙️ Setup Instructions\n\n### 🛠 Prerequisites\n- Node.js (v18+ recommended)\n- MongoDB Atlas or local MongoDB instance\n- npm or yarn\n\n---\n\n### 📦 Backend Setup\n```bash\ncd backend\nnpm install\n```\n\n## .env\n- PORT=5000\n- MONGO_URI=your_mongodb_atlas_uri\n- JWT_SECRET=your_jwt_secret\n\n## 👨‍💻 Author\n\n## Kunal Bishwal\n- 📍 3rd Year Engineering Student – SRM University\n- 💼 Aspiring Software Engineer | MERN Developer","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkunalbishwal%2Flibrora","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkunalbishwal%2Flibrora","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkunalbishwal%2Flibrora/lists"}