freeCodeCamp/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-an-image-search-abstr...

1.9 KiB

id title isRequired challengeType forumTopicId
bd7158d8c443edefaeb5bdee Build an Image Search Abstraction Layer true 4 302361

Description

Objective: Build a full stack JavaScript app that allows you to search for images like this: https://cryptic-ridge-9197.herokuapp.com/api/imagesearch/lolcats%20funny?offset=10 and browse recent search queries like this: https://cryptic-ridge-9197.herokuapp.com/api/latest/imagesearch/. Then deploy it to Glitch. Note that for each project, you should create a new GitHub repository and a new Glitch project. If you can't remember how to do this, revisit https://freecodecamp.org/challenges/get-set-for-our-api-development-projects. Here are the specific user stories you should implement for this project: User Story: I can get the image URLs, alt text and page urls for a set of images relating to a given search string. User Story: I can paginate through the responses by adding a ?offset=2 parameter to the URL. User Story: I can get a list of the most recently submitted search strings. Once you've finished implementing these user stories, click the "I've completed this challenge" button and enter the URLs for both your GitHub repository and your live app running on Glitch. You can get feedback on your project by sharing it with your friends on Facebook.

Instructions

Tests

tests: []

Challenge Seed

Solution

// solution required