Skip to content

SaudSaleem/Dig-Dns-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

dig-domain npm version

This is a simple wrapper for the unix/linux/macos dig command. Output contain both raw JSON and corresponding IP's

Install

npm i dig-domain

Usage

const dig = require('dig-domain')
dig.lookup([args])

You can add all args from dig to the args array.

Examples

const dig = require('dig-domain')
dig(['google.com'])
  .then((result) => {
    console.log(result)
  })
  .catch((err) => {
    console.log('Error:', err);
  });

Result

The function returns object with following properties IPs, rawData, error

{
    error: false,
    IPs: [ '216.58.208.238' ],
    rawData: '\n' +
    '; <<>> DiG 9.10.6 <<>> google.com\n' +
    ';; global options: +cmd\n' +
    ';; Got answer:\n' +
    ';; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 50501\n' +
    ';; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1\n' +
    '\n' +
    ';; OPT PSEUDOSECTION:\n' +
    '; EDNS: version: 0, flags:; udp: 1232\n' +
    ';; QUESTION SECTION:\n' +
    ';google.com.\t\t\tIN\tA\n' +
    '\n' +
    ';; ANSWER SECTION:\n' +
    'google.com.\t\t249\tIN\tA\t216.58.208.238\n' +
    '\n' +
    ';; Query time: 9 msec\n' +
    ';; SERVER: 1.1.1.1#53(1.1.1.1)\n' +
    ';; WHEN: Tue Aug 02 02:06:13 PKT 2022\n' +
    ';; MSG SIZE  rcvd: 55\n' +
    '\n'
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published