목차
http 모듈 예제 - http 통해서 데이터 전송
http 모듈 정의
http 모듈 구문
http 모듈 속성/메서드
http 모듈 예제 - http 통해서 데이터 전송
1. C:\User\사용자명\hz.js 생성.
var http = require('http');
http.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. 브라우저 접속해 결과 확인.
http://localhost:8080/
http 모듈 정의
Node.js를 HTTP 서버로 사용. (= http 통해서 데이터 전송.)
※ HTTP : Hyper Text Transfer Protocol.
http 모듈 구문
var http = require('http');
http 모듈 속성/메서드
createClient()
폐기 예고 . HTTP 클라이언트 생성.
createServer()
HTTP 서버 생성.
get()
메소드를 GET으로 설정하고 사용자의 요청을 포함하는 객체를 반환.
globalAgent
HTTP 에이전트를 반환.
request()
사용자의 요청을 포함하는 객체를 반환.
주소 복사
랜덤 이동
최신댓글