- https://www.udemy.com/react-redux
- his initial repo for the course: https://github.com/StephenGrider/ReduxCasts
- No repo for updated course. Instead, resource files can be downloaded from Udemy course content.
- simple example of useState (comes from react library)
- Click button to add random animal image. Click on animal image to make heart icon increase size.
- Uses Unsplash public API to search for term and display results
- uses Unsplash API
- uses openweathermap.org's free API to get weather data
- also uses google maps
- uses API Stephen Grider wrote for this tutorial: http://reduxblog.herokuapp.com/
- uses axios, which is a "Promise based HTTP client for the browser and node.js"
- video section "Exploring the Posts API"
- uses Postman, a free application for API Development: https://www.getpostman.com/
- if you accidentally push node_modules to a repo by not putting them in the .gitignore
file and need to remove them, run:
git rm -r --cached node_modules
git commit -m "remove the ignored node_modules directory"
git push origin master