Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
DNS package which works similar to native DNS package of Node but internally using dig for fast updations
DNS package which works similar to native DNS package of Node but internally using dig for fast updations
npm install dns-dig --save
var dns = require('dns-dig')()
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 with an optional options object:
var dns = require('dns-dig');
The options are:
host (Optional)
- If not set then will automatically utilize available host for query. Otherwise when an IP of any DNS provider is supplied, then it queries that specific host.dns.resolveIp4(domainName, {host: '1.1.1.1'})
Takes a string and returns an array of IPv4 addresses associated with the supplied domain if any.
dns.resolveCname(domainName, {host: '1.1.1.1'})
Takes a string and returns an array of CNAME Records associated with the supplied domain if any.
dns.resolveMx(domainName, {host: '1.1.1.1'})
Takes a string and returns an array of MX Records associated with the supplied domain if any.
dns.resolveNs(domainName, {host: '1.1.1.1'})
Takes a string and returns an array of NS Records associated with the supplied domain if any.
dns.resolveTxt(domainName, {host: '1.1.1.1'})
Takes a string and returns an array of TXT Records associated with the supplied domain if any.
MIT
FAQs
DNS package which works similar to native DNS package of Node but internally using dig for fast updations
The npm package dns-dig receives a total of 46 weekly downloads. As such, dns-dig popularity was classified as not popular.
We found that dns-dig demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.