1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { fetch } from "https://esm.town/v/std/fetch";
export async function getWeather(city: string) {
try {
const response = await fetch(`https://wttr.in/${city}?format=j1`);
if (!response.ok) {
throw new Error(`Failed to fetch data for ${city}`);
}
const jsonData = await response.json();
const feelsLikeF = jsonData.current_condition[0].FeelsLikeF;
const weatherDescription =
jsonData.current_condition[0].weatherDesc[0].value;
return `${city}: feels like ${feelsLikeF}, ${weatherDescription}`;
}
catch (error) {
throw new Error(`Failed to fetch weather data: ${error}`);
}
}