Skip to content

controlx-io/weather-forecaster

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Weather Forecast Library

A Node.js library to download and process weather forecast data from an FTP server.

Installation

npm install weather-forecaster

Usage

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);
});

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published