0.0.3 • Published 10 years ago
node-whois-plus v0.0.3
node-whois-plus
obtain whois information using whois module and parse the returned value into an object
usage:
var whois = require('node-whois-plus');
whois.whois("google.com", function(err, data) {
if(err) {
console.error(err);
} else {
console.log(data);
}
});