Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 425 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 425 Bytes

Example

An example of how to get the weather based on location.

var weather = require('weather');

weather({location: 'Melbourne'}, function(data) {
  if (data.temp > 30) {
    console.log("Damn it's hot!");
  }
});

Example JSON result:

{
  temp: 18, // Current temperature
  high: 20, // High for the day
  low: 9,   // Low for the day
}

Licence

Licensed under the MIT License