This repository contains a simple weather application developed using React.js. It fetches current weather data from the OpenWeatherMap API based on user input (city name) and displays essential weather information including temperature, humidity, and wind speed. The app is designed to be intuitive and responsive, providing users with up-to-date weather details for any location worldwide.
- Node.js installed on your local machine
- Clone the repository:
git clone <repository-url> cd weatherApp
- Set API key
- Obtain a free API key from OpenWeatherMap.
- Add your API key to the
.envfile in root folder:VITE_APP_KEY = "<YOUR_API_KEY>"
- Install dependencies and start the application
npm install npm run dev