Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.04 KB

README.md

File metadata and controls

44 lines (27 loc) · 1.04 KB

Reckon

Reckon is a wrapper for the forecast.io api. It provides a simple way of accessing the amazing weather data they provide!

// instantiate reckon like so
var reckoner = new Reckon({apiKey:'your api key from http://developer.forecast.io'});

// call the api lat + long and you'll get back weather data!
reckoner.get({lat:'valid lat',lon:'valid long'}, function(data){
  res.render('index', {'results':data});
});

Installation

Clone the repo

git clone [email protected]:jonezy/reckon.git ./reckon

Install dependencies

cd reckon && npm install

Setup settings.json

Go to developer.forecast.io and register for an account. After you register you will be at the developer dashboard, copy the api key from the bottom of the screen

mv example/settings.local example/settings.json

{
    'apiKey': 'your api key from above',
}

Run the example site

cd example
grunt

Run tests

mocha -R nyan (the best way to run tests)