A Node.js library to download and process weather forecast data from an FTP server.
npm install weather-forecaster
const { getForecast, getPlaceList } = require('weather-forecaster');
const filename = "IDN11060.xml";
const placeName = "The Entrance";
getForecast(filename, placeName, true).then(data => {
console.log(data);
});
getPlaceList(filename, true).then(data => {
console.log(data);
});