Skip to content
forked from pihvi/dns-info

Node.js package to easily fetch all DNS records on a domain with a single high-speed function.

License

Notifications You must be signed in to change notification settings

NerdyTechy/dns-info

 
 

Repository files navigation

dns-info

A simple package to fetch information about a domain's DNS records.

⚠️ Note: This package is a fork of pihvi/dns-info and has been updated to fix security vulnerabilities and to simplify the codebase.

Installation

npm install @nerdytechy/dns-info

This fork of dns-info supports both CommonJS and ESM.

CommonJS

const dnsInfo = require("@NerdyTechy/dns-info");

ESM

import dnsInfo from '@nerdytechy/dns-info';

Examples

Simple Request

dnsInfo("example.com").then((info) => {
    console.log(info);
});

Custom Options

dnsInfo({
    domain: "example.com",
    server: {
        address: "8.8.8.8",
        port: 53,
        type: "udp",
    },
    timeout: 2000,
})
    .then((info) => {
        console.log(info);
    })
    .catch((e) => {
        console.error(e); // Request timed out
    });

Filtering Records

dnsInfo("example.com").then((info) => {
    console.log(info.records.find((records) => records.type === "A").data);
});

About

Node.js package to easily fetch all DNS records on a domain with a single high-speed function.

Resources

License

Security policy

Stars

Watchers

Forks

Languages

  • JavaScript 100.0%