UNPKG

openweather-apis

Version:

Simple APIs to use with OpenWeatherMap.org free servicies, request a APPID on http://openweathermap.org/appid and start!

13 lines (9 loc) 282 B
var weather = require('./index.js'); weather.setAPPID('2a1ad423e9fad1a3ceda81fda56b1366'); weather.setLang('it'); weather.setUnits('metric'); weather.setCity('roma'); // weather.setCoordinate(41.9152,12.5068) weather.getSmartJSON(function(err,smart){ console.log(smart); });