'개발자를 위한 웹 게임 쿡북' 10장 RTS 중 node.JS를 이용해 HTTP 서버를 간단히 구현하는 테스트를 따라하다.
Git-Bash에서 node httpserver.js 로 기동시키고 FireFox 브라우저 주소창에 localhost:1234를 입력하여 확인한 것.

17/7/21 금

httpserver.js=============================================

console.log("http://localhost:1234에서 실행중");
var http = require('http'); //http 패키지 불러오기
//요청시 불러올 함수 매개변수로 전달.
http.createServer(function(request, response){
  console.log("요청을 받았음");
  response.write('<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">');
  response.write("<h1>실행 성공!</h1>");
  response.end(); //연결 종료
}).listen(1234); //서버 동작시 리스닝할 포트번호 지정