A NodeJS Library for the JsonWhois API. It gathers social, whois and screenshot data for domains.
NodeJS & Unirest.
$ npm install jsonwhois
var JsonWhois = require('jsonwhois').apiKey('API KEY');
JsonWhois.whois("google.com", function(res){
console.log(res);
});
JsonWhois.screenshot("google.com", function(res){
console.log(res);
});
And thats it!
MIT