Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 858 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 858 Bytes

weather.now

Find what are the weather conditions anywhere in the world.

Screenshot from 2022-03-23 09-57-39

Installation

You can use npm or yarn to install the dependencies

npm install

Usage

You can check the project live HERE.

Just type in a city name and a request will be made to the OpenWeatherMap API. As soon as a response comes back, the current weather information will be displayed for you.

When typing in a nonexistent city, the program will thow and error.

What I've Learned

  • How to make requests to an API.
  • Creating a React application from scratch.
  • React concepts of components, "Lifting a State Up", error boundaries, states.
  • Dealing with asynchronous code.