0
node.jsリクエストモジュールを使用していて、dns
モジュールを使用せずに解決されたIPアドレスを取得したいとします。node.jsリクエストモジュールを使用している場合、ドメインの解決IPアドレスを取得する方法は?
など。
var request = require('request');
request("http://example.com", function(e, r, body) {
// how do I get example.com IP address here?
});