Files
freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/take-home-projects/build-an-image-search-abstraction-layer.english.md
Kristofer Koishigawa 8e3f740127 fix: update take home project links (#39444)
* fix: update take home project links and update mentions of Glitch with Repl.it

* fix: clean up text, fix typos, and remove deploy to Heroku text

* fix: update nightlife coordination app description text

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

* fix: update GH link text based on suggestion

* fix: update links to the fCC forum

* fix: update nightlife coordination app url

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* fix: change http to https

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
2020-08-31 10:32:22 -07:00

1.8 KiB

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

Description

Objective: Build a full stack JavaScript app on Repl.it 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/. 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, enter the URL to your live app and, optionally, your GitHub repository. Then click the "I've completed this challenge" button. You can get feedback on your project by sharing it on the freeCodeCamp forum.

Instructions

Tests

tests: []

Challenge Seed

Solution

// solution required