From cc386615b58e3c0ce5b6dc79a9ccd82952593a64 Mon Sep 17 00:00:00 2001 From: Muditapandey26 Date: Tue, 28 Oct 2025 23:35:20 +0530 Subject: [PATCH] Created Book-Buddy Tracker idea Added initial documentation for the Book-Buddy Tracker project, outlining its purpose, user stories, and resources needed. --- Projects/1-Beginner/Book-Buddy-Tracker.md | 30 +++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Projects/1-Beginner/Book-Buddy-Tracker.md diff --git a/Projects/1-Beginner/Book-Buddy-Tracker.md b/Projects/1-Beginner/Book-Buddy-Tracker.md new file mode 100644 index 00000000..2c93f8ed --- /dev/null +++ b/Projects/1-Beginner/Book-Buddy-Tracker.md @@ -0,0 +1,30 @@ +# Book-Buddy Tracker +**Tier:** 1 – Beginner + +## Description +Book-Buddy Tracker helps users manage books they want to read, are currently reading, or have finished, along with reading progress. + +### Purpose of the Application +To learn basic state transitions, list filtering, and persistence. + +### Resources Needed +- LocalStorage or simple database +- Optional: Google Books API for book lookup + +## User Stories +- User can add a book with title and author. +- User can categorize a book: "Wishlist", "Reading", "Finished". +- User can mark progress or completion status. +- User can view lists filtered by reading status. +- User can delete or update entries. + +## Bonus Features +- Fetch book details via ISBN using Google Books API. +- Display reading statistics. +- Share finished book lists with friends. + +## Useful Links and Resources +- Google Books API: https://developers.google.com/books + +## Example Projects +- Reading log mobile/web apps