# TLD Enumerations Lists of every [IANA TLD](http://data.iana.org/TLD/tlds-alpha-by-domain.txt) in formats that can be natively compiled in various language targets. A [canonical list of TLDs in CSV format](/tlds.csv) was used to generate the native formats. ## Usage The lists can be conveniently used in PHP or Node projects including this package. ### Node * use npm to add the `tld-enum` package to your project ```sh $ npm install tld-enum --save ``` * add the module to your source ```js const tldEnum = require('tld-enum'); ``` * access the list by using the `tldEnum.tldList` array ```js const tldEnum = require('tld-enum'); tldEnum.tldList; //an array with every IANA TLD ``` The following example... ```js const tldEnum = require('tld-enum'); console.log("There are " + tldEnum.tldList.length + " IANA TLDs"); let tldCheck; tldCheck = "com"; console.log("Is '" + tldCheck + "' a real TLD?"); if (tldEnum.tldList.indexOf(tldCheck.toLowerCase()) != -1) { console.log(" yes"); } else { console.log(" no"); } tldCheck = "somethingWeird"; console.log("Is '" + tldCheck + "' a real TLD?"); if (tldEnum.tldList.indexOf(tldCheck.toLowerCase()) != -1) { console.log(" yes"); } else { console.log(" no"); } ``` Should produce the following output... ```txt There are 1573 IANA TLDs Is 'com' a real TLD? yes Is 'somethingWeird' a real TLD? no ``` ### PHP * use composer to add the `katmore/tld-enum` package to your project ```sh $ composer require katmore/tld-enum ``` * access the list by using the `\TldEnum\TldEnum::TLD_ENUM` class constant array ```php