1.0.1 • Published 1 year ago
@loybung/weatherapi v1.0.1
Unofficial | Weatherapi
const { Weather } = require("@loybung/weatherapi");
(async () => {
const weather = new Weather({ key: "API Key" });
await weather.fetchCurrentWeather("Bangkok");
console.log(weather.data);
})();