Gathering detailed insights and metrics for whois-json
Gathering detailed insights and metrics for whois-json
Gathering detailed insights and metrics for whois-json
Gathering detailed insights and metrics for whois-json
npm install whois-json
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
62 Stars
67 Commits
34 Forks
5 Watching
3 Branches
6 Contributors
Updated on 27 Nov 2024
Minified
Minified + Gzipped
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-10.6%
959
Compared to previous day
Last week
0.9%
4,677
Compared to previous week
Last month
15.2%
20,033
Compared to previous month
Last year
46.1%
289,285
Compared to previous year
4
1
A wrapper for the excellent whois
module, that returns results in actual, structured, camelCased JavaScript!
Callbacks are no longer supported by this module - the module returns Promises and should be used with await
.
(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": "abusecomplaints@markmonitor.com",
"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 contact-admin@google.com, 1600 Amphitheatre Parkway",
"registrantCity": "Mountain View",
"registrantStateProvince": "CA",
"registrantPostalCode": "94043",
"registrantCountry": "US",
"registrantPhone": "+1.6502530000",
"registrantFax": "+1.6506188571",
"registrantEmail": "dns-admin@google.com",
"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": "dns-admin@google.com",
"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": "dns-admin@google.com",
"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 <<<"
};
Issues are cool, but PRs are better.
If you add features, add tests. Don't break the tests.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 4/19 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
10 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More