Weather App
29-03-2019
A Weather app that uses an express backend to relay weather data from the DarkSky API to a React frontend.
This application allows a user to view the observed (in the past 30 days) or forecasted (in the future) daily weather conditions for a given location (the user's current location).
I will document all of the technical aspects of the application in the Github readmes. There's one file pertaining to the back- and one to the frontend of the application.
In summary
Briefly stated, the application works as follows:
- The user's location is requested(using the geolocation web API).
- The location data is passed to an express backend on the server.
- This backend will fetch weather data for that location from the DarkSky API.
- This weather data is then passed from the backend to the React frontend and displayed to the user.