Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in miliseconds.
In the following example code, we are using getWeather from stevekrouse/getWeather. It uses the free wttr.in service to get weather data.
- Add these lines to your code
- Replace Brooklyn, NY with your location
- Click Run Now
- View the output in the val’s logs
import { getWeather } from "https://esm.town/v/stevekrouse/getWeather";
let weather = await getWeather("Brooklyn, NY");
console.log(weather.current_condition[0].FeelsLikeF)