Weather forecast by MSN weather.
$ npm install msn-weather-api
$ yarn add msn-weather-api
const WeatherMSN = require('msn-weather-api');
const weather = new WeatherMSN('en', 'c');
(async () => {
const current = await weather.getCurrentData('kyoto');
const forecast = await weather.getForecastData('kyoto', 1);
current.weather; // Cloudy
forecast.weather; // Light Rain
})();
This project is licensed under the ISC License.