whois-checker-v2
v1.0.3
Published
A wrapper for the fantastic whois module that parses whois data into consistent fields across multiple tlds
Downloads
157
Readme
Installation
Run npm i whois-checker-v2
Use:
const whois = require("whois-checker-v2");
(async () => {
try{
const result = await whois.lookup("google.com.pk");
return result;
}catch(e){
return e;
}
})()