[Node.js] 공부 2일차 1. httpServer.js 소스 분석 12345678910111213141516171819202122232425//httpServer.jsvar http = require('http'); //HTTP 서버 시작 http.createServer(function (req, res) { var data = []; /* 응답변수 오류 이벤트 */ res.on('error', function(err) { logger.log("event RES error : " + err); }); /* 요청변수 오류 이벤트 */ req.on('error', function(err) { logger.log("event REQ error : " + err); }); /* 요청 시 데이터 수신 이벤트..