0.0.4 • Published 8 years ago

domaintally v0.0.4

Weekly downloads
1
License
BSD
Repository
github
Last release
8 years ago

Wrapper for DomainTally domain information API.

Install

npm install domaintally

Usage

var key = '....'; //Get your api key from www.domaintally.com 
client = require('domaintally')({ key: key });

client.domain('google.com', function (res) {
  console.log(res);
});

client.ranking('google.com', function (res) {
  console.log(res);
});

client.whois('google.com', function (res) {
  console.log(res);
});