JSPM

wunderground-api

1.1.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 111
  • Score
    100M100P100Q77172F
  • License MIT

Wundergroud Api wrapper for node

Package Exports

  • wunderground-api

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (wunderground-api) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

wunderground-api

Build Status

Install

$ npm install wunderground-api --save

Use

var Wunderground = require('wunderground-api');
var client = new Wunderground('your api key here', 'Washington', 'DC');

All parameters are optional at the point of init, you can change them later by adding in an object

var Wunderground = require('wunderground-api');
var client = new Wunderground();

Examples

var Wunderground = require('wunderground-api');
var client = new Wunderground('your api key here', 'Washington', 'DC');

client.conditions('', function(err, data) {
  if (err) throw err;
  else console.log(data);
});

client.hourly10day('', function(err, data) {
  if (err) throw err;
  else console.log(data);
});

No config at the point of init

var Wunderground = require('wunderground-api');
var client = new Wunderground();
var opts = {
  key:'your api key here', 
  city:'Washington', 
  state: 'DC'
}

client.conditions(opts, function(err, data) {
  if (err) throw err;
  else console.log(data);
});

client.hourly10day(opts, function(err, data) {
  if (err) throw err;
  else console.log(data);
});

Half init, opts will always overwrite init

var Wunderground = require('wunderground-api');
var client = new Wunderground('your api key here');
var opts = {
  city:'Washington', 
  state: 'DC'
}

client.conditions(opts, function(err, data) {
  if (err) throw err;
  else console.log(data);
});

client.hourly10day(opts, function(err, data) {
  if (err) throw err;
  else console.log(data);
});

Config Api

WundergroundClient(apiKey, city, state)

Init a new Wunderground client for API use, all params optional at init and can be overwritten

Params:

  • String apiKey - the Wunderground api key

  • String city - city for weather data

  • String state - state for weather data

Opts

Optional object passed into API

Props

  • String key - wunderground key
  • String city - city
  • String state - state

API

conditions(opts, callback)

Gets conditions for a specific location

Params:

  • Object opts - optional object that bypasses initting a client
  • Function callback - returns err, data

forecast(opts, callback)

Gets forecast for a specific location

Params:

  • Object opts - optional object that bypasses initting a client
  • Function callback - returns err, data

forecast10day(opts, callback)

Gets forecast 10 days in advance for a specific location

Params:

  • Object opts - optional object that bypasses initting a client
  • Function callback - returns err, data

hourly(opts, callback)

Gets hourly conditions for a specific location

Params:

  • Object opts - optional object that bypasses initting a client
  • Function callback - returns err, data

hourly10day(opts, callback)

Gets hourly conditions 10 days in advance for a specific location

Params:

  • Object opts - optional object that bypasses initting a client
  • Function callback - returns err, data