Skip to content

A lightweight Whois Client and Parser written in Javascript

License

Notifications You must be signed in to change notification settings

hoducha/whois-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Whois API

A lightweight Whois Client and Parser written in Javascript.

Installation

Global

  $ npm install -g whois-api

CLI usage

  Usage: whois-api [options] <address> [addresses]

  Options:

    -h, --help     output usage information
    -V, --version  output the version number
    -r, --raw      Display the raw whois response

Local

    $ npm install whois-api

Basic usage

import whois from 'whois-api';

whois.lookup('trello.com', (error, result) => {
  console.log(result);
});

Lookup for multiple domains

whois.multiLookup(['trello.com', 'example.com'], (error, result) => {
  console.log(result);
});

Raw lookup

whois.rawLookup('trello.com', (error, result) => {
  console.log(result);
});

Contributing

Contributions are welcome.

License

Whois API is available under the BSD (2-Clause) License.

About

A lightweight Whois Client and Parser written in Javascript

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published