1.0.1 • Published 7 years ago

jsonwhoisapi v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

jsonwhoisapi

A small (as in tiny) client for Node.js to retrieve domain information from the jsonWHOISapi service at jsonwhoisapi.com.

Usage

Usage is pretty basic:

const whois = require('jsonwhoisapi').auth('customer-id', 'api-key');
whois.lookup('google.com', (body => console.dir(body)));

which will yield the result described at jsonwhoisapi.com/docs

That's it. Tiny docs for a tiny library.