thom4parisot/tld.js
{ "createdAt": "2012-05-09T14:27:27Z", "defaultBranch": "master", "description": "JavaScript API to work easily with complex domain names, subdomains and well-known TLDs.", "fullName": "thom4parisot/tld.js", "homepage": "https://npmjs.com/tldjs", "language": "JavaScript", "name": "tld.js", "pushedAt": "2025-10-08T13:59:06Z", "stargazersCount": 470, "topics": [ "browser", "hostname", "javascript", "nodejs", "public-suffix-list", "subdomain", "tld", "tldextract", "uri", "validation-library" ], "updatedAt": "2025-11-14T06:47:44Z", "url": "https://github.com/thom4parisot/tld.js"}tld.js
![][badge-downloads]
Section titled “tld.js ![][badge-downloads]”
tld.jsis a Node.js module written in JavaScript to work against complex domain names, subdomains and well-known TLDs.
It answers with accuracy to questions like what is mail.google.com’s domain?, what is a.b.ide.kyoto.jp’s subdomain? and is https://big.data’s TLD a well-known one?.
tld.js runs fast, is fully tested and is safe to use in the browser (with [browserify][], webpack and others). Because it relies on Mozilla’s [public suffix list][], now is a good time to say thank you Mozilla!
Install
Section titled “Install”# Regular installnpm install --save tldjs
# You can update the list of well-known TLD during the installnpm install --save tldjs --tldjs-update-rulesThe latter is useful if you significantly rely on an up-to-date list of TLDs. You can [list the recent changes][] ([changes Atom Feed][]) to get a better idea of what is going on in the Public Suffix world.
Using It
Section titled “Using It”const {parse, tldExists} = require('tldjs');
// Checking only if TLD exists in URL or hostname// First TLD exists; the second does not.console.log(tldExists('https://www.bbc'));console.log(tldExists('tld.unknown'));
// Retrieving hostname related informations of a given URLparse('http://www.writethedocs.org/conf/eu/2017/');👋 [Try it your browser to see how it works][interactive-example].
⬇️ Read the documentation below to find out the available functions.
tldjs.parse()
Section titled “tldjs.parse()”This methods returns handy properties about a URL or a hostname.
const tldjs = require('tldjs');
tldjs.parse('https://spark-public.s3.amazonaws.com/dataanalysis/loansData.csv');// { hostname: 'spark-public.s3.amazonaws.com',// isValid: true,// isIp: false,// tldExists: true,// publicSuffix: 's3.amazonaws.com',// domain: 'spark-public.s3.amazonaws.com',// subdomain: ''// }
tldjs.parse('gopher://domain.unknown/');// { hostname: 'domain.unknown',// isValid: true,// isIp: false,// tldExists: false,// publicSuffix: 'unknown',// domain: 'domain.unknown',// subdomain: ''// }
tldjs.parse('https://192.168.0.0')// { hostname: '192.168.0.0',// isValid: true,// isIp: true,// tldExists: false,// publicSuffix: null,// domain: null,// subdomain: null// }| Property Name | Type | |
|---|---|---|
hostname | String | |
isValid | Boolean | Is the hostname valid according to the RFC? |
tldExists | Boolean | Is the TLD well-known or not? |
publicSuffix | String | |
domain | String | |
subdomain | String |
Single purpose methods
Section titled “Single purpose methods”These methods are shorthands if you want to retrieve only a single value.
tldExists()
Section titled “tldExists()”Checks if the TLD is well-known for a given hostname — parseable with [require('url').parse][].
const { tldExists } = tldjs;
tldExists('google.com'); // returns `true`tldExists('google.local'); // returns `false` (not an explicit registered TLD)tldExists('com'); // returns `true`tldExists('uk'); // returns `true`tldExists('co.uk'); // returns `true` (because `uk` is a valid TLD)tldExists('amazon.fancy.uk'); // returns `true` (still because `uk` is a valid TLD)tldExists('amazon.co.uk'); // returns `true` (still because `uk` is a valid TLD)tldExists('https://user:password@example.co.uk:8080/some/path?and&query#hash'); // returns `true`getDomain()
Section titled “getDomain()”Returns the fully qualified domain from a given string — parseable with [require('url').parse][].
const { getDomain } = tldjs;
getDomain('google.com'); // returns `google.com`getDomain('fr.google.com'); // returns `google.com`getDomain('fr.google.google'); // returns `google.google`getDomain('foo.google.co.uk'); // returns `google.co.uk`getDomain('t.co'); // returns `t.co`getDomain('fr.t.co'); // returns `t.co`getDomain('https://user:password@example.co.uk:8080/some/path?and&query#hash'); // returns `example.co.uk`getSubdomain()
Section titled “getSubdomain()”Returns the complete subdomain for a given string — parseable with [require('url').parse][].
const { getSubdomain } = tldjs;
getSubdomain('google.com'); // returns ``getSubdomain('fr.google.com'); // returns `fr`getSubdomain('google.co.uk'); // returns ``getSubdomain('foo.google.co.uk'); // returns `foo`getSubdomain('moar.foo.google.co.uk'); // returns `moar.foo`getSubdomain('t.co'); // returns ``getSubdomain('fr.t.co'); // returns `fr`getSubdomain('https://user:password@secure.example.co.uk:443/some/path?and&query#hash'); // returns `secure`getPublicSuffix()
Section titled “getPublicSuffix()”Returns the [public suffix][] for a given string — parseable with [require('url').parse][].
const { getPublicSuffix } = tldjs;
getPublicSuffix('google.com'); // returns `com`getPublicSuffix('fr.google.com'); // returns `com`getPublicSuffix('google.co.uk'); // returns `co.uk`getPublicSuffix('s3.amazonaws.com'); // returns `s3.amazonaws.com`getPublicSuffix('tld.is.unknown'); // returns `unknown`isValidHostname()
Section titled “isValidHostname()”Checks if the given string is a valid hostname according to RFC 1035. It does not check if the TLD is well-known.
const { isValidHostname } = tldjs;
isValidHostname('google.com'); // returns `true`isValidHostname('.google.com'); // returns `false`isValidHostname('my.fake.domain'); // returns `true`isValidHostname('localhost'); // returns `false`isValidHostname('https://user:password@example.co.uk:8080/some/path?and&query#hash'); // returns `false`isValidHostname('192.168.0.0') // returns `true`Troubleshooting
Section titled “Troubleshooting”Retrieving subdomain of localhost and custom hostnames
Section titled “Retrieving subdomain of localhost and custom hostnames”tld.js methods getDomain and getSubdomain are designed to work only with known and valid TLDs.
This way, you can trust what a domain is.
localhost is a valid hostname but not a TLD. Although you can instanciate your own flavour of tld.js with additional valid hosts:
const tldjs = require('tldjs');
tldjs.getDomain('localhost'); // returns nulltldjs.getSubdomain('vhost.localhost'); // returns null
const myTldjs = tldjs.fromUserSettings({ validHosts: ['localhost']});
myTldjs.getDomain('localhost'); // returns 'localhost'myTldjs.getSubdomain('vhost.localhost'); // returns 'vhost'Updating the TLDs List
Section titled “Updating the TLDs List”Many libraries offer a list of TLDs. But, are they up-to-date? And how to update them?
tld.js bundles a list of known TLDs but this list can become outdated.
This is especially true if the package have not been updated on npm for a while.
Hopefully for you, even if I’m flying over the world, if I’ve lost my Internet connection or even if you do manage your own list, you can update it by yourself, painlessly.
How? By passing the --tldjs-update-rules to your npm install command:
# anytime you reinstall your projectnpm install --tldjs-update-rules
# or if you add the dependency to your projectnpm install --save tldjs --tldjs-update-rulesOpen an issue to request an update of the bundled TLDs.
Contributing
Section titled “Contributing”Provide a pull request (with tested code) to include your work in this main project. Issues may be awaiting for help so feel free to give a hand, with code or ideas.
Performances
Section titled “Performances”tld.js is fast, but keep in mind that it might vary depending on your own
use-case. Because the library tried to be smart, the speed can be drastically
different depending on the input (it will be faster if you provide an already
cleaned hostname, compared to a random URL).
On an Intel i7-6600U (2,60-3,40 GHz):
For already cleaned hostnames
Section titled “For already cleaned hostnames”| Methods | ops/sec |
|---|---|
isValidHostname | ~8,700,000 |
extractHostname | ~8,100,000 |
tldExists | ~2,000,000 |
getPublicSuffix | ~1,130,000 |
getDomain | ~1,000,000 |
getSubdomain | ~1,000,000 |
parse | ~850,000 |
For random URLs
Section titled “For random URLs”| Methods | ops/sec |
|---|---|
isValidHostname | ~25,400,000 |
extractHostname | ~400,000 |
tldExists | ~310,000 |
getPublicSuffix | ~240,000 |
getDomain | ~240,000 |
getSubdomain | ~240,000 |
parse | ~230,000 |
You can measure the performance of tld.js on your hardware by running the following command:
npm run benchmarkNotice: if this is not fast enough for your use-case, keep in mind that you can
provide your own extractHostname function (which is the bottleneck in
this benchmark) to tld.js.
Contributors
Section titled “Contributors”This project exists thanks to all the people who contribute. [[Contribute]]!(CONTRIBUTING.md).
Backers
Section titled “Backers”Thank you to all our backers! 🙏 [Become a backer]
Sponsors
Section titled “Sponsors”Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
License
Section titled “License”[MIT License]!(LICENSE).
[badge-downloads] !: https://img.shields.io/npm/dm/tldjs.svg
[public suffix list] !: https://publicsuffix.org/list/ [list the recent changes] !: https://github.com/publicsuffix/list/commits/master [changes Atom Feed] !: https://github.com/publicsuffix/list/commits/master.atom [browserify CDN] !: https://wzrd.in/ [browserify] !: http://browserify.org/ [interactive-example] !: https://runkit.com/thom4parisot/tld.js-runkit-example
[require('url').parse] !: https://nodejs.org/api/url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost
[public suffix] !: https://publicsuffix.org/learn/