a small weather app i built to practice full stack stuff. you type a city, it shows the weather. that's pretty much it.
- node installed on your machine
- an API key from openweathermap.org (free, takes 2 minutes to sign up)
- clone the repo
- create a
.envfile inside theserverfolder and paste this in:
WEATHER_API_KEY=your_key_here
- install everything
npm install- run it
npm run dev- open
http://localhost:5173and search any city
- if the city doesn't show up, double check your api key, that's usually the problem
- the free tier of openweathermap is more than enough for this