Library Management System
Library Management System
Tech Stack:
Features:
✅ User authentication
✅ Add, update, and delete books
✅ Issue and return books to borrowers
✅ Track borrowing history
✅ View book availability
API Endpoints:
Method Route Description
Books Collection
json
{
"_id": "ObjectId",
"title": "string",
"author": "string",
"isbn": "string",
"availability": "Available/Borrowed",
"borrower_id": "ObjectId",
"borrow_date": "ISODate",
"return_date": "ISODate"
}