[node.js] weather 모듈
var weather = require('weather-js'); weather.find({search: 'Seoul', degreeType: 'C'}, function(err, result) { if(err) console.log(err); console.log(JSON.stringify(result, null, 1)); }); 위 코드는 weather 모듈을 사용하여 날씨를 받아오는 기본적인 코드이다. https://github.github.io/fetch/ 위 사이트를 참고하여 fetch 모듈을 사용하여 날씨를 받아오는 코드를 작성해보려고 하였는데, 여러 블로그 및 사이트들을 찾고 또 찾아도 실패하였다,,, 계산기 과제와 날씨를 알려주는 과제 중 어려운 과제로 도전해봤다. 계산기 과제는 간단한 js..