Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 1002 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 1002 Bytes

Recipe searcher

A react client web app for the Recipe Puppy API.

Queries the API for the given search term, displaying the first 20 results found

Run in local enviroment

  • npm install
  • npm run

Demo

recipes

Project structure

structure

Libraries

  • Create React App used to create the web client with no build configuration
  • lodash.throttle to throttle the API's calls and improve the overall performance
  • jsonp to call the Recipe Puppy API and bypass the API's CORS protocol
  • async to facilitate asynchronous JavaScript