This is a simple Weather Forecast app written in React. Used for practice purposes
An Dang - anppdang@gmail.com
- Acquire an API key from WeatherAPI
- Clone project
npm installfor dependencies- Setup a
secrets.jsunder/srcas follows:// /src/secrets.js export const SECRETS = { API_BASE_URL: "https://api.weatherapi.com/v1/", API_KEY: "YOUR WEATHER API KEY", FORECAST: "forecast.json" }
npm startto run local dev server
- Pulls and displays weather forecast data from WeatherAPI.
- Search a location to display weather forecast data via ZIP code or city name.
- Save search results to top-bar for later access. (Branch
feature/saved-location)