Node js

웹서비스 기본 예제

이상욱1 2015. 3. 24. 18:45

require('http').createServer(function (request , response) {

//응답합니다

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

response.end('<h1> hello web server with nose.js</h1>');

}).listen(52275,function(){

console.log('server runnig at http://127.0.0.1:52275');

})