수색…


http 서버

HTTP 서버의 기본 예제.

http_server.js 파일에 다음 코드를 작성하십시오.

var http = require('http');

var httpPort = 80;

http.createServer(handler).listen(httpPort, start_callback);

function handler(req, res) {
    
    var clientIP = req.connection.remoteAddress;
    var connectUsing = req.connection.encrypted ? 'SSL' : 'HTTP';
    console.log('Request received: '+ connectUsing + ' ' + req.method + ' ' + req.url);
    console.log('Client IP: ' + clientIP);

    res.writeHead(200, "OK", {'Content-Type': 'text/plain'});
    res.write("OK");
    res.end();        
    return;
}

function start_callback(){
    console.log('Start HTTP on port ' + httpPort)
}

http_server.js 위치에서 다음 명령을 실행하십시오.

node http_server.js

이 결과가 나타납니다.

> Start HTTP on port 80

이제 서버를 테스트해야하며 인터넷 브라우저를 열고이 URL로 이동해야합니다.

http://127.0.0.1:80

당신의 머신이 리눅스 서버를 돌리고 있다면 다음과 같이 테스트 할 수있다 :

curl 127.0.0.1:80

다음과 같은 결과가 나타납니다.

ok

콘솔에서 앱을 실행하면 다음 결과가 표시됩니다.

> Request received: HTTP GET /
> Client IP: ::ffff:127.0.0.1

http 클라이언트

http 클라이언트의 기본 예제 :

http_client.js 파일에 다음 코드를 작성하십시오.

var http = require('http');

var options = {
  hostname: '127.0.0.1',
  port: 80,
  path: '/',
  method: 'GET'
};

var req = http.request(options, function(res) {
    console.log('STATUS: ' + res.statusCode);
    console.log('HEADERS: ' + JSON.stringify(res.headers));
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
        console.log('Response: ' + chunk);
    });
    res.on('end', function (chunk) {
        console.log('Response ENDED');
    });
});

req.on('error', function(e) {
    console.log('problem with request: ' + e.message);
});


req.end();

http_client.js 위치에서 다음 명령을 실행하십시오.

node http_client.js

이 결과가 나타납니다.

> STATUS: 200
> HEADERS: {"content-type":"text/plain","date":"Thu, 21 Jul 2016 11:27:17 GMT","connection":"close","transfer-encoding":"chunked"}
> Response: OK
> Response ENDED

참고 :이 예제는 http 서버 예제에 의존합니다.



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow