Advertisement
yuch4n

OpenWeatherMap

Feb 9th, 2015
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var h=require('http');h.get('http://api.openweathermap.org/data/2.5/weather?q=Sapporo-shi,JP',function(r){var b='';r.on('data',function(d){b+=d;});r.on('end',function(){b=JSON.parse(b);console.log(b.name+':'+b.weather[0].main+'('+b.weather[0].description+') Temp:'+(b.main.temp-273.15).toFixed(1))});});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement