Monitors popular stock tickers using polygon.io and iexcloud.io API calls. (polygon.io allows for up to 3 API calls per minute in its free version so only 3 stocks are dislayed. iexcloud.io is used for stock logo)
Backend is made using Express backend and API call is made through the testAPI.js file via the route defined in the app.js file. Information is consumed by the React app in the App.js file and is finally displayed as such using some styling in App.css:
To run the app:
- In your terminal, navigate to the root directory and run
npm startto start the front-end (App.js) - In a separate terminal window, navigate to the api folder in the root directory and run
npm startto start the back-end.
- In case localhost:3000 doesn't automatically load in your browser, load it and you should see something like the above!

