Welcome to the Book Store API — your RESTful backend for managing books, authors, and users.
/api/books → Get all books/api/books/{id} → Get book by ID/api/books/addBook → Add book to DB/api/books/update/{id} → Edit book & save to DB/api/books/delete/{id} → Delete book from DB/api/authors → Get all authors/api/authors/{id} → Get author by ID/api/authors → Add author to DB/api/authors/{id} → Edit author & save to DB/api/authors/{id} → Delete author from DB/api/u/register → Register new user/api/u/login → Login with credentials/api/u/me → View profile (requires JWT)Built with ❤️ using Node.js, Express, and MongoDB.