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'));
console.log(domainNameParser.parse('www.example.co.uk'));
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.