Node.js + Express backend providing a simple API to fetch weather forecasts using Open-Meteo services.
It exposes a single endpoint:
GET /api/weather?place=PLACE_NAME
- Install dependencies:
cd backend
npm install- Start
npm run devThe server will run on http://localhost:3000.
React + Vite frontend for displaying weather forecasts fetched from the backend.
- Input field to enter a place name.
- Displays a table with min/max temperature for tomorrow.
- Install dependencies:
cd frontend
npm install- Start
npm run devThe frontend will run on http://localhost:5173.