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

ip2whois-nodejs

v1.1.0

Published

IP2WHOIS component

Downloads

6

Readme

npm npm

IP2WHOIS Node.js Module

This Node.js module enables user to easily implement the checking of WHOIS information for a particular domain into their solution using the API from https://www.ip2whois.com. It is a WHOIS lookup api that helps users to obtain domain information, WHOIS record, by using a domain name. The WHOIS API returns a comprehensive WHOIS data such as creation date, updated date, expiration date, domain age, the contact information of the registrant, mailing address, phone number, email address, nameservers the domain is using and much more. IP2WHOIS supports the query for 1113 TLDs and 634 ccTLDs.

This module requires API key to function. You may sign up for a free API key at https://www.ip2whois.com/register.

Installation

To install this module type the following:


npm install ip2whois-nodejs

Usage Example

Lookup Domain Information

const {IP2WhoisApi} = require("ip2whois-nodejs");

let ip2whois = new IP2WhoisApi();

let apiKey = 'YOUR_API_KEY';

ip2whois.open(apiKey);

let domain = 'example.com';
ip2whois.lookup(domain, (err, data) => {
	if (!err) {
		console.log(data);
	}
});

Convert Normal Text to Punycode

const {IP2WhoisApi} = require("ip2whois-nodejs");

let ip2whois = new IP2WhoisApi();

let result = ip2whois.getPunycode('täst.de');
console.log(result);

Convert Punycode to Normal Text

const {IP2WhoisApi} = require("ip2whois-nodejs");

let ip2whois = new IP2WhoisApi();

let result = ip2whois.getNormalText('xn--tst-qla.de');
console.log(result);

Return the Domain Name from an URL

const {IP2WhoisApi} = require("ip2whois-nodejs");

let ip2whois = new IP2WhoisApi();

let result = ip2whois.getDomainName('https://www.example.com/exe');
console.log(result);

Return the Domain Extension from an URL/domain

const {IP2WhoisApi} = require("ip2whois-nodejs");

let ip2whois = new IP2WhoisApi();

let result = ip2whois.getDomainExtension('https://www.example.com/exe');
console.log(result);

Response Parameter

Lookup function

| Parameter | Type | Description | |---|---|---| |domain|string|Domain name.| |domain_id|string|Domain name ID.| |status|string|Domain name status.| |create_date|string|Domain name creation date.| |update_date|string|Domain name updated date.| |expire_date|string|Domain name expiration date.| |domain_age|integer|Domain name age in day(s).| |whois_server|string|WHOIS server name.| |registrar.iana_id|string|Registrar IANA ID.| |registrar.name|string|Registrar name.| |registrar.url|string|Registrar URL.| |registrant.name|string|Registrant name.| |registrant.organization|string|Registrant organization.| |registrant.street_address|string|Registrant street address.| |registrant.city|string|Registrant city.| |registrant.region|string|Registrant region.| |registrant.zip_code|string|Registrant ZIP Code.| |registrant.country|string|Registrant country.| |registrant.phone|string|Registrant phone number.| |registrant.fax|string|Registrant fax number.| |registrant.email|string|Registrant email address.| |admin.name|string|Admin name.| |admin.organization|string|Admin organization.| |admin.street_address|string|Admin street address.| |admin.city|string|Admin city.| |admin.region|string|Admin region.| |admin.zip_code|string|Admin ZIP Code.| |admin.country|string|Admin country.| |admin.phone|string|Admin phone number.| |admin.fax|string|Admin fax number.| |admin.email|string|Admin email address.| |tech.name|string|Tech name.| |tech.organization|string|Tech organization.| |tech.street_address|string|Tech street address.| |tech.city|string|Tech city.| |tech.region|string|Tech region.| |tech.zip_code|string|Tech ZIP Code.| |tech.country|string|Tech country.| |tech.phone|string|Tech phone number.| |tech.fax|string|Tech fax number.| |tech.email|string|Tech email address.| |billing.name|string|Billing name.| |billing.organization|string|Billing organization.| |billing.street_address|string|Billing street address.| |billing.city|string|Billing city.| |billing.region|string|Billing region.| |billing.zip_code|string|Billing ZIP Code.| |billing.country|string|Billing country.| |billing.phone|string|Billing phone number.| |billing.fax|string|Billing fax number.| |billing.email|string|Billing email address.| |name_servers|array|Name servers|

{
    "domain": "greendot.com",
    "domain_id": "600750_DOMAIN_COM-VRSN",
    "status": "registered",
    "create_date": "1997-11-03T00:00:00Z",
    "update_date": "2019-10-29T01:25:57Z",
    "expire_date": "2021-11-02T05:00:00Z",
    "domain_age": 9027,
    "whois_server": "whois.corporatedomains.com",
    "registrar": {
        "iana_id": "299",
        "name": "CSC CORPORATE DOMAINS, INC.",
        "url": "www.cscprotectsbrands.com"
    },
    "registrant": {
        "name": "Admin Role",
        "organization": "Green Dot Corporation",
        "street_address": "",
        "city": "Pasadena",
        "region": "CA",
        "zip_code": "91107",
        "country": "US",
        "phone": "+1.8664120548",
        "fax": "+1.8664120548",
        "email": "[email protected]"
    },
    "admin": {
        "name": "Admin Role",
        "organization": "Green Dot Corporation",
        "street_address": "",
        "city": "Pasadena",
        "region": "CA",
        "zip_code": "91107",
        "country": "US",
        "phone": "+1.8664120548",
        "fax": "+1.8664120548",
        "email": "[email protected]"
    },
    "tech": {
        "name": "Admin Role",
        "organization": "Green Dot Corporation",
        "street_address": "",
        "city": "Pasadena",
        "region": "CA",
        "zip_code": "91107",
        "country": "US",
        "phone": "+1.8664120548",
        "fax": "+1.8664120548",
        "email": "[email protected]"
    },
    "billing": {
        "name": "",
        "organization": "",
        "street_address": "",
        "city": "",
        "region": "",
        "zip_code": "",
        "country": "",
        "phone": "",
        "fax": "",
        "email": ""
    },
    "nameservers": "ns1.greendotdns.com, ns2.greendotdns.com"
}

LICENCE

See the LICENSE file.