nodejs web서버 만들기 - hello world // 모듈을 추출합니다. var http = require('http'); // 웹 서버를 생성 및 실행합니다. http.createServer(function (request, response){ response.writeHead(200, {'Content-Type' : 'text/html'}); response.end('Hellow World... !'); }).listen(52273, function(){ console.log('Server running at http://127.0.0.1:52273/'); }); 더보기 Coupon114 더보기 미스터도넛(misterDonut) 더보기 이전 1 2 3 4 5 ··· 13 다음