Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 560 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 560 Bytes

node-jsonwhois

A NodeJS Library for the JsonWhois API. It gathers social, whois and screenshot data for domains.

Requirements

NodeJS & Unirest.

Installing

$   npm install jsonwhois

Configuring

   var JsonWhois = require('jsonwhois').apiKey('API KEY');

Usage

  JsonWhois.whois("google.com", function(res){
      console.log(res);
  });

  JsonWhois.screenshot("google.com", function(res){
      console.log(res);
  });

And thats it!

License

MIT