response객체
메소드 종류
writeHead(statusCode,object) 응답헤더 작성
end([data], [encoding]) 응답 본문을 작성
//============간단한 응답 메시지 작성=============
1
2
3
4
5
6
|
require('http').createServer(function (request,response){
response.writeHead(200,{'Content-Type':'text/html'});
response.end('<h1>Hello Web Server with node.js</h1>');
}).listen(52273,function(){
console.log('server Running at http://127.0.0.1:52273')
});
| cs |
//=============================================
response.writeHead(200,{'Content-Type':'text/html'});을 통해 응답되는 형태가 text/html가 해단된다.
127.0.0.1에 접속하면 접속한 웹 브라우저 창에는
response.end('<h1>Hello Web Server with node.js</h1>'); 라고 뜨고 end라는 메서드가 응답되면 반응하는 놈이다
명령 프롬프트 창에는console.log('server Running at http://127.0.0.1:52273')
여기서 출력된다. 연결되면 출력이 된다.
댓글
댓글 쓰기