
Image Search Abstraction Layer
- Summary: A FreeCodeCamp challenge for a full stack Javascript app that searches for images.
- Source URL: https://github.com/michellemtchai/image-search
- Demo URL: https://image-search-4v67.onrender.com
- Stacks:
Objective
Build a full stack Javascript app that fulfills the user stories provided by FreeCodeCamp.
Original Challenge: https://www.freecodecamp.org/learn/coding-interview-prep/take-home-projects/build-an-image-search-abstraction-layer
User Stories
- You can get the image URLs, description and page URLs for a set of images relating to a given search string.
- You can paginate through the responses by adding a
?page=2parameter to the URL. - You can get a list of the most recently submitted search strings.
Examples
- Search:
/query/lolcats%20funny?page=10 - Recent searches:
/recent
Additional Info
The max search count per day is 100 because Google Search API only allows that much for my current plan.




