Instantly gets you the latest changes done on the DNS (Within few seconds). This is great for domain verification and other quick verification purposes.
npm install instant-dns --save
var dns = require('instant-dns')()
dns.resolveIp4('example.com').then(ip4 => {
console.log(ip4); // ["93.184.216.34"]
});
The module exposes an object with different function which can be called:
var dns = require('instant-dns');
Takes a string and returns an array of IPv4 addresses associated with the supplied domain if any.
Takes a string and returns an array of CNAME Records associated with the supplied domain if any.
Takes a string and returns an array of MX Records associated with the supplied domain if any.
Takes a string and returns an array of TXT Records associated with the supplied domain if any.
MIT