weatherman.io

1.0.1 • Public • Published

Install it

 npm install weatherman.io

Require it

var weatherman = require( "weatherman.io" );

Create a weatherman

var alRoker = new weatherman( "your-forecast-io-api-key" );

Create a weatherman with options

var options = {
    units: "uk",
    exclude: ["minutely", "alerts"],
    extend: "hourly"
};

var alRoker = new weatherman( "your-forecast-io-api-key", options );

Detailed information about each of these options is available in the Forecast.io developer docs: https://developer.forecast.io/docs/v2

Do the forecast from a location

var forecastOptions = {
    latitude: 41.8854710,
    longitude: -87.6430260
};

alRoker.doForecast( forecastOptions, function ( err, weatherReport ) {

    if ( err ) {
        // handle any errors
    }
    // do something with the weatherReport

} );

Do the forecast for a specific time (Unix timestamp)

var forecastOptions = {
    latitude: 41.8854710,
    longitude: -87.6430260,
    time: 1395347280
};

alRoker.doForecast( forecastOptions, function ( err, weatherReport ) {

    if ( err ) {
        // handle any errors
    }
    // do something with the weatherReport

} );

Package Sidebar

Install

npm i weatherman.io

Weekly Downloads

11

Version

1.0.1

License

MIT

Last publish

Collaborators

  • projectweekend