在Node / Express中获取客户端主机名

时间:2012-06-04 10:27:37

标签: javascript node.js express hostname

是否可以在Node / Express中获取客户端的主机名?

类似于req.connection.remoteAddress的东西,用于获取客户端的IP。

2 个答案:

答案 0 :(得分:3)

以下是一个例子:

var http = require('http'),
    dns  = require('dns');

http.createServer(function (req, res) {
  var ip = req.connection.remoteAddress;

  res.writeHead(200, {'Content-Type': 'text/html'});
  dns.reverse(ip, function(err, hostnames) {
    res.write("Ip: " + ip + "<br />");
    res.end("Your hostname(s) are " + hostnames.join("; "));
  });
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');

在官方Node.js文档网站上阅读更多内容:  http://nodejs.org/docs/v0.6.18/api/dns.html#dns_dns_reverse_ip_callback

答案 1 :(得分:-2)

您是否尝试过搜索Node.js documentation