npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

whois-json

v2.0.4

Published

whois, with actual JavaScript (not flat string) results!

Downloads

20,384

Readme

A wrapper for the excellent whois module, that returns results in actual, structured, camelCased JavaScript!

Build Status

Changes in version 2

Callbacks are no longer supported by this module - the module returns Promises and should be used with await.

Demo

(async function(){
	const whois = require('whois-json');

	var results = await whois('google.com');
	console.log(JSON.stringify(results, null, 2));
})()

Or to specify some options to the underlying whois module, use:

(async function(){
	const whois = require('whois-json');

	var results = await whois('google.com', {follow: 3, verbose: true});
	console.log(JSON.stringify(results, null, 2));
})()

Returns the following results. Note duplicate keys in whois results (like nameServer) are combined into a single result, seperated by space:

{
	"domainName": "google.com",
	"registryDomainId": "2138514_DOMAIN_COM-VRSN",
	"registrarWhoisServer": "whois.markmonitor.com",
	"registrarUrl": "http://www.markmonitor.com",
	"updatedDate": "2015-06-12T10:38:52-0700",
	"creationDate": "1997-09-15T00:00:00-0700",
	"registrarRegistrationExpirationDate": "2020-09-13T21:00:00-0700",
	"registrar": "MarkMonitor, Inc.",
	"registrarIanaId": "292",
	"registrarAbuseContactEmail": "[email protected]",
	"registrarAbuseContactPhone": "+1.2083895740",
	"domainStatus": "clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited) clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited) clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited) serverUpdateProhibited (https://www.icann.org/epp#serverUpdateProhibited) serverTransferProhibited (https://www.icann.org/epp#serverTransferProhibited) serverDeleteProhibited (https://www.icann.org/epp#serverDeleteProhibited)",
	"registrantName": "Dns Admin",
	"registrantOrganization": "Google Inc.",
	"registrantStreet": "Please contact [email protected], 1600 Amphitheatre Parkway",
	"registrantCity": "Mountain View",
	"registrantStateProvince": "CA",
	"registrantPostalCode": "94043",
	"registrantCountry": "US",
	"registrantPhone": "+1.6502530000",
	"registrantFax": "+1.6506188571",
	"registrantEmail": "[email protected]",
	"adminName": "DNS Admin",
	"adminOrganization": "Google Inc.",
	"adminStreet": "1600 Amphitheatre Parkway",
	"adminCity": "Mountain View",
	"adminStateProvince": "CA",
	"adminPostalCode": "94043",
	"adminCountry": "US",
	"adminPhone": "+1.6506234000",
	"adminFax": "+1.6506188571",
	"adminEmail": "[email protected]",
	"techName": "DNS Admin",
	"techOrganization": "Google Inc.",
	"techStreet": "2400 E. Bayshore Pkwy",
	"techCity": "Mountain View",
	"techStateProvince": "CA",
	"techPostalCode": "94043",
	"techCountry": "US",
	"techPhone": "+1.6503300100",
	"techFax": "+1.6506181499",
	"techEmail": "[email protected]",
	"nameServer": "ns4.google.com ns2.google.com ns1.google.com ns3.google.com",
	"dnssec": "unsigned",
	"urlOfTheIcannWhoisDataProblemReportingSystem": "http://wdprs.internic.net/",
	"lastUpdateOfWhoisDatabase": "2017-02-22T03:53:14-0800 <<<"
};

Send pull requests

Issues are cool, but PRs are better.

If you add features, add tests. Don't break the tests.