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});
});
git clone [email protected]:jonezy/reckon.git ./reckon
cd reckon && npm install
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',
}
cd example
grunt
mocha -R nyan (the best way to run tests)