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