1# Project Express API.
The aim of this project is to create an API with RESTful endpoints returning either an array of data or a single item.
Express is used to create the API and the server is run in Node.js
ENDPOINTS CREATED:
/books - returns all the books with all their data and has two filters, one for author and one for top-rated books:
/books?author=Firstname Lastname - returns all books by specific author
/books?top=true - returns books with a rating higher than 4.3
/books/:id - returns a single book according to a specific id entered
With time, I plan to add pagination to limit the number of results shown on a page, as well as implement a frontend part for this project to help visualize how the API could be used.
Google Cloud Platform is used to deploy the API: