HTTP 서버 및 클라이언트
1. server.js
// index.html
<html>
<head>
<title>Example</title>
</head>
<body>
Hello!!!
</body>
</html>
// server.js
var http = require('http');
var fs = require('fs');
var url = require('url');
// 서버 생성
http.createServer( function (request, response) {
// URL 뒤에 있는 디렉토리/파일이름 파싱
var pathname = url.parse(request.url).pathname;
console.log("Request for " + pathname + " received.");
// 파일 이름이 비어있다면 index.html 로 설정
if(pathname=="/"){
pathname = "/index.html";
}
// 파일을 읽기
fs.readFile(pathname.substr(1), function (err, data) {
if (err) {
console.log(err);
// 페이지를 찾을 수 없음
// HTTP Status: 404 : NOT FOUND
// Content Type: text/plain
response.writeHead(404, {'Content-Type': 'text/html'});
}else{
// 페이지를 찾음
// HTTP Status: 200 : OK
// Content Type: text/plain
response.writeHead(200, {'Content-Type': 'text/html'});
// 파일을 읽어와서 responseBody에 작성
response.write(data.toString());
}
// responseBody 전송
response.end();
});
}).listen(8081);
console.log("Server running at 127.0.0.1:8081");
2. client.js
// client.js
var http = require('http');
// HTTPRequest의 옵션 설정
var options = {
host: '127.0.0.1',
port: '8081',
path: '/index.html'
};
// 콜백 함수로 Response를 받아온다
var callback = function(response){
// response 이벤트가 감지되면 데이터를 body에 받아온다
var body = '';
response.on('data', function(data) {
body += data;
});
// end 이벤트가 감지되면 데이터 수신을 종료하고 내용을 출력한다
response.on('end', function() {
// 데이터 수신 완료
console.log(body);
});
}
// 서버에 HTTP Request 를 날린다.
var req = http.request(options, callback);
req.end();
결과 확인은 node server.js를 먼저 실행시킨 다음에 다른 쉘이나 터미널에서 node client.js를 입력하시면 됩니다.
$ node client.js
<html>
<head>
<title>Example</title>
</head>
<body>
Hello!!!
</body>
</html>
참고 글: HTTP Module
'Programming 개발은 구글로 > Web[프론트엔드&백엔드]' 카테고리의 다른 글
[Web] Route 사용법(react-router-dom) 및 페이지 설정 (0) | 2022.07.12 |
---|---|
[Web] HTML/CSS 링크(a href, Link) Underline, Decoration, Color 변경하기 (0) | 2022.07.11 |
[Web] React 프로젝트 생성 시 보안 오류인 PSSecurityException, UnauthorizedAccess 에러 발생 (0) | 2022.07.06 |
[Web] Node.js - Blocking & Non-Blocking code (0) | 2022.07.05 |
[Web] Redux(리덕스) 시작하기 (0) | 2022.07.04 |
댓글