Slovenian historical and current weather data. Arso archive wrapper for node. http://meteo.arso.gov.si/met/sl/archive/
npm install arso-weather
var WeatherArso = require('arso-weather');
var weatherArso = new WeatherArso()
weatherArso.weatherData("2015-02-03", "2015-02-04", function (err, data) {
if (err) throw err;
console.log(data.data);
})