Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

whois-api

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

whois-api

An independent Whois Client and Parser written in Javascript.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
202
decreased by-77.23%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

FAQs

Package last updated on 27 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc