Package Exports
- tldjs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (tldjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
tld.js 
tld.js
is JavaScript API to work against complex domain names, subdomains and URIs.
It answers with accuracy to questions like what is the domain/subdomain of mail.google.com
and a.b.ide.kyoto.jp
?
tld.js
is fully tested, works in Node.js and in the browser, with or without AMD.
Its database keeps up to date thanks to Mozilla's public suffix list to have and keep up to date with domain names.
Thanks Mozilla!
Install
npm | bower | component |
---|---|---|
npm install --save tldjs |
bower install --save tld |
component install tld |
Using It
Node.js
var tld = require('tldjs');
tld.getDomain('mail.google.co.uk');
// -> 'google.co.uk'
Browser
A browser version is made available thanks to Browserify CDN.
<script src="http://wzrd.in/standalone/tldjs">
<script>
tldjs.getDomain('mail.google.co.uk');
// -> 'google.co.uk'
</script>
You can build your own by using browserify:
npm install --save tldjs
browserify -s tld -r node_modules/tldjs/index.js -o tld.js
An UMD module will be created as of tld.js
.
API
tldExists()
Checks if the TLD is valid for a given host.
tld.tldExists('google.com'); // returns `true`
tld.tldExists('google.local'); // returns `false` (not an explicit registered TLD)
tld.tldExists('com'); // returns `true`
tld.tldExists('uk'); // returns `true`
tld.tldExists('co.uk'); // returns `true` (because `uk` is a valid TLD)
tld.tldExists('amazon.fancy.uk'); // returns `true` (still because `uk` is a valid TLD)
tld.tldExists('amazon.co.uk'); // returns `true` (still because `uk` is a valid TLD)
tld.tldExists('https://user:password@example.co.uk:8080/some/path?and&query#hash'); // returns `true`
getDomain()
Returns the fully qualified domain from a host string.
tld.getDomain('google.com'); // returns `google.com`
tld.getDomain('fr.google.com'); // returns `google.com`
tld.getDomain('fr.google.google'); // returns `google.google`
tld.getDomain('foo.google.co.uk'); // returns `google.co.uk`
tld.getDomain('t.co'); // returns `t.co`
tld.getDomain('fr.t.co'); // returns `t.co`
tld.getDomain('https://user:password@example.co.uk:8080/some/path?and&query#hash'); // returns `example.co.uk`
getSubdomain()
Returns the complete subdomain for a given host.
tld.getSubdomain('google.com'); // returns ``
tld.getSubdomain('fr.google.com'); // returns `fr`
tld.getSubdomain('google.co.uk'); // returns ``
tld.getSubdomain('foo.google.co.uk'); // returns `foo`
tld.getSubdomain('moar.foo.google.co.uk'); // returns `moar.foo`
tld.getSubdomain('t.co'); // returns ``
tld.getSubdomain('fr.t.co'); // returns `fr`
tld.getSubdomain('https://user:password@example.co.uk:8080/some/path?and&query#hash'); // returns ``
getPublicSuffix()
Returns the public suffix for a given host.
tld.getPublicSuffix('google.com'); // returns `com`
tld.getPublicSuffix('fr.google.com'); // returns `com`
tld.getPublicSuffix('google.co.uk'); // returns `co.uk`
tld.getPublicSuffix('s3.amazonaws.com'); // returns `s3.amazonaws.com`
isValid()
Checks if the host string is valid. It does not check if the tld exists.
tld.isValid('google.com'); // returns `true`
tld.isValid('.google.com'); // returns `false`
tld.isValid('my.fake.domain'); // returns `true`
tld.isValid('localhost'); // returns `false`
tld.isValid('https://user:password@example.co.uk:8080/some/path?and&query#hash'); // returns `true`
Troubleshouting
Retrieving subdomain of localhost
and custom hostnames
tld.js
methods getDomain
and getSubdomain
are designed to work only with valid TLDs.
This way, you can trust what a domain is.
Unfortunately, localhost
is a valid hostname but it is not a TLD.
tld.js
has a concept of validHosts
you declare
var tld = require('tldjs');
tld.getDomain('localhost'); // returns null
tld.getSubdomain('vhost.localhost'); // returns null
tld.validHosts = ['localhost'];
tld.getDomain('localhost'); // returns 'localhost'
tld.getSubdomain('vhost.localhost'); // returns 'vhost'
Updating the TLDs List
Many libraries offer a list of TLDs. But, are they up-to-date? And how to update them?
tldjs
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 project
npm install --tldjs-update-rules
# or if you add the dependency to your project
npm install --save tldjs --tldjs-update-rules
Open an issue to request an update of the bundled rules.
Or else, fork the project and open a PR after having run npm version patch
.
Once merged, the tldjs
package will be published on npmjs.com.
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.