웹표준 html,css,javascript 실무 과정 자료] http 모듈로 간단 웹서버 구축







웹표준 html,css,javascript 실무 과정 자료] http 모듈로 간단 웹서버 구축

실무개발자를위한 실무교육 전문교육센터학원

www.oraclejava.co.kr에 오시면 보다 다양한 강좌를 보실 수 있습니다.


http 모듈로 간단 웹서버 구축


var http = require('http');

 

http.createServer(function(request, response){

    response.writeHead(200, {"Content-Type": "text/plain"});

    response.write("Hello World");

    response.end();

}).listen(8888);


+ Recent posts