A javascript implementation of the WHOIS protocol for node.js
$ curl http://npmjs.org/install.sh | sh
$ npm install whoisclient
var whois = require('whoisclient');
whois.query('google.com', function(data) {
console.log(data);
});
var whois = require('whoisclient');
var options = {
server: 'whois.server.tld', // Different whois server
port: 43 // Different port
};
whois.query('google.com', options, function(data) {
console.log(data);
});
- Implement automatic thick Lookups