0.0.11 • Published 1 year ago

effective-domain-name-parser v0.0.11

Weekly downloads
33
License
MIT
Repository
github
Last release
1 year ago

devDependency Status

Domain name parser

This is very simple library for Node to parse a domain name into Top Level Domain / Second Level Domain / Subdomains based on the list of effective Top Level Domains maintained by Mozilla.

Install with npm install effective-domain-name-parser.

var domainNameParser = require("effective-domain-name-parser");
console.log(domainNameParser.parse('www.example.com'));
// { tld: "com", sld: "example", "subdomain": "www" }

console.log(domainNameParser.parse('www.example.co.uk'));
// { tld: "co.uk", sld: "example", "subdomain": "www" }

Updating list of effective TLDs

The list of TLDs used by the library is built with node buildPLS.js. This package should get updated each time the list is.

0.0.11

1 year ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

4 years ago

0.0.6

5 years ago

0.0.4

5 years ago

0.0.3

7 years ago

0.0.2

9 years ago

0.0.1

10 years ago