1.0.1 • Published 8 years ago

metricsbot v1.0.1

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

Wrapper for MetricsBot domain information API.

Install

npm install metricsbot

Usage

var key = '....';
client = require('metricsbot')({ 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);
});