목차
https 모듈 예제 - https 통해서 데이터 전송
https 모듈 정의
https 모듈 구문
https 모듈 속성/메서드
https 모듈 예제 - https 통해서 데이터 전송
1. C:\User\사용자명\hz.js 생성.
var https = require('https');
https.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('Homzzang.com ');
res.end();
}).listen(8080);
2. CMD 모드 띄운 후, 아래 명령어 실행.
C:\User\사용자명>node hz.js
3. 브라우저 접속해 결과 확인.
https://localhost:443/
※ PC가 https 지원 안 하므로 테스트해 볼 필요 없음. ㅡㅡ;
https 모듈 정의
Node.js가 보안 HTTP 프로토콜 인 HTTP TLS/SSL 프로토콜을 통해 데이터를 전송하는 방법을 제공.
※ HTTP : Hyper Text Transfer Protocol. (하이퍼 텍스트 전송 규약.)
※ TLS : Transport Layer Security. (전송 계층 보안.) ※ SSL : Secure Sockets Layer. (보안 소켓 계층.)
https 모듈 구문
var https = require('https');
https 모듈 속성/메서드
createServer()
HTTPS 서버 생성.
get()
메소드를 GET으로 설정하고 사용자의 요청을 포함하는 객체를 반환.
globalAgent
HTTPS 에이전트를 반환.
request
보안 웹서버에 요청.
주소 복사
랜덤 이동
최신댓글