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

現在你需要測試你的伺服器,你需要開啟你的網際網路瀏覽器並導航到這個網址:

http://127.0.0.1:80

如果你的機器執行 Linux 伺服器,你可以像這樣測試它:

curl 127.0.0.1:80

你應該看到以下結果:

ok

在你的控制檯中,執行該應用程式,你將看到以下結果:

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