realtime-weather-forcast
v1.0.1
Published
An npm package to get realtime weather
Downloads
3
Readme
realtime-weather
An npm package to get realtime weather
To install Package npm i realtime-weather-forecast
syantax for use this package
import fetchWeather from 'realtime-weather';
const main = async (city) => {
const weatherData = await fetchWeather(city);
console.log(weatherData);
};