Node.js DNS モジュールは、c-aresのラッパーであり、オプションがかなり薄いです。(タイムアウトなど) を提供する必要がある場合は、node-dnsを確認することをお勧めします。これは、DNS モジュールで使用可能なすべての機能に 1:1 のマッピングを提供し、さらに高度なオプション (タイムアウトを含む) を指定するための追加のメソッドを提供します。 ):
var dns = require('native-dns');
var question = dns.Question({
name: 'www.google.com',
type: 'A'
});
var req = dns.Request({
question: question,
server: { address: '8.8.8.8', port: 53, type: 'udp' },
timeout: 1000
});
req.on('timeout', function () {
console.log('Timeout in making request');
});
req.on('message', function (err, answer) {
answer.answer.forEach(function (a) {
console.log(a.promote().address);
});
});
req.on('end', function () {
console.log('Finished processing request');
});
req.send();