0.0.5 • Published 5 years ago

dns-client v0.0.5

Weekly downloads
1
License
GPL-3.0-or-later
Repository
github
Last release
5 years ago

DNS Client

This project is an implementation of a DNS record lookup service using Node.js.

Install

npm install dns-client

Usage

let client = new Client();
client.setUpServers(_=>{
    client.on("result",function(data){
        console.log(data)//{answers:[],'name-servers':[],'addtional-records':[]}
        client.close();
    });
    client.resolve("google.com","A");
})
0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago