Coding the Add Books Functionality
Learn and build the functionality that adds books to the bookshop.
Adding books
Books are added to the books collection through Meteor Methods called from the client. The functionality that adds books is an admin-only function. The admin enters details about the book through the user interface. The authors of the entered books are searched using the firstname of an author. A list of ...
Ask