metricsbot
v1.0.1
Published
Javascript wrapper for Metricsbot.com API fetch domain, ranking and whois infomation
Downloads
8
Maintainers
Readme
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);
});