extract-tld
v1.1.2
Published
Extract the TLD from a URL against the [public suffix list](https://publicsuffix.org/).
Downloads
2,501
Maintainers
Readme
extract-tld
Extract the TLD from a URL against the public suffix list.
Getting started
Install the package using your preferred package manager:
npm install extract-tld
You can now use the parser:
import { parseUrl } from 'extract-tld';
parseUrl('https://google.com');
// { domain: 'google.com', sub: 'https://www', tld: 'com' }
Private TLDs
import { parseUrl } from 'extract-tld';
parseUrl('test.compute.amazonaws.com', { allowPrivateTLD: true });
// { domain: 'test.compute.amazonaws.com', sub: '', tld: 'compute.amazonaws.com' }
Unknown TLDs
You can allow unknown TLDs by specifying the configuration option:
import { parseUrl } from 'extract-tld';
parseUrl('https://somewhere.local');
// Throws
parseUrl('https://somewhere.local', { allowUnknownTLD: true });
// { domain: 'http://somewhere.local', sub: '', tld: 'local' }
Development
Ensure you have pnpm installed
- Clone this repository
- Run
pnpm install
Contributing
All contributions are welcome - feel free to open a PR or issue :)
List maintenance
There is a script that will fetch the latest public suffix list and transform it into a format usable by this library. You can run the script by running pnmpm updateList
.
Ideally, this script would run once a day and update tlds.json accordingly, but the work for that hasn't been done yet.
Credits
- tld-extract
- This is the main basis of inspiration for this library. I've basically taken this library and modernised it (and added some nice things like TypeScript support) as the author seems to be unreachable.