Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

Latest commit

 

History

History
executable file
·
29 lines (23 loc) · 679 Bytes

readme.md

File metadata and controls

executable file
·
29 lines (23 loc) · 679 Bytes

wunderbar

A simple node.js interface to the Wunderground weather API.

Currently working

  • Full implementation of Wunderground Data API
  • Multiple langauge support

Work in progress

  • Layers (Rader, Satellite, and both)
  • AutoComplete API
  • Icon URL interface

Installing

$ npm install wunderbar

Don't forget to obtain an API key from here.

Usage

var wunderbar = require('wunderbar');
var weather   = new wunderbar('yourapikey');

weather.conditions('B19 1AS', function(err, res) {
    console.log(res);
});

See examples/ for more detailed usage examples.