Weather App

A simple weather app using data from OpenWeatherMap API.

The challenge

Users should be able to:

  • Search the weather by entering a city name in search field.
  • If city name exists, the app will show city's current temperature, humidity and wind speed.

Screenshots

When city name exists
Found

When city name has no match
No match

Link

What I learned

  • Environment variable: How to pass .env file variables to webpack configuration. ( Link 1, Link 2 )
  • Webpack MiniCssExtractPlugin: How to covert .scss to .css in webpack setup. ( Link 1, Link 2 )

Acknowledgments