weather-sdk-basleal
v1.0.6
Published
A Simple Weather API SDK
Readme
Example: import {WeatherSDK} from 'weather-sdk-basleal'
const findWeather = new WeatherSDK('API-KEY')
findWeather.getCurrentWeatherByLocation('Nairobi').then((response) => {
console.log(response)
}).catch((error) => {
console.log(error)
})
