output was shown as api not found.did not really the solution for it. please help
var Forecast = require('forecast');
var forecast = new Forecast({
service: 'forecast.io',
key: 'your-api-key',
units: 'celcius',
cache: true,
ttl: {
minutes: 27,
seconds: 45
}
});
forecast.get([12.9670,77.5873], function(err, weather) {
if(err) return console.dir(err);
console.dir(weather);
});
forecast.get([12.9670,77.5873], true, function(err, weather) {
if(err) return console.dir(err);
console.dir(weather);
});
##