# TLD Enumerations Lists of every [IANA TLD](http://data.iana.org/TLD/tlds-alpha-by-domain.txt) in various formats. The lists may be continuously updated using the included [update utility](#updating-the-tld-format-files) that pulls the latest data from IANA. * [CSV Format](./tlds.csv) * [All Format Files](#tld-list-formats) * [Updating the Format Files](#updating-the-tld-format-files) * [Node Usage](#node-usage) * [PHP Usage](#php-usage) ## Usage Because the lists are provided in universial CSV and JSON formats, they can be easily utilitized in most programming environments. Additionally, for convenience, some native programming language formats have also been provided. * [Node Usage](#node-usage) * [More Node Examples](#more-node-examples) * [PHP Usage](#php-usage) * [More PHP Examples](#more-php-examples) ### Node Usage * 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'); console.log(tldEnum.list); //an array with every IANA TLD ``` The following example... ```js const tldEnum = require('tld-enum'); console.log("There are " + tldEnum.list.length + " IANA TLDs"); let tldCheck; tldCheck = "com"; console.log("Is '" + tldCheck + "' a real TLD?"); if (tldEnum.list.indexOf(tldCheck.toLowerCase()) != -1) { console.log(" yes"); } else { console.log(" no"); } tldCheck = "somethingWeird"; console.log("Is '" + tldCheck + "' a real TLD?"); if (tldEnum.list.indexOf(tldCheck.toLowerCase()) != -1) { console.log(" yes"); } else { console.log(" no"); } ``` Should produce the following output... ```txt There are 1577 IANA TLDs Is 'com' a real TLD? yes Is 'somethingWeird' a real TLD? no ``` #### More Node Examples * [js-demo.js](/examples/js-demo.js) Demo using the simple array of every TLD in JavaScript. * [js-desc-demo.js](/examples/js-desc-demo.js) Demo using the TLD description hashmap in JavaScript. * [js-type-demo.js](/examples/js-type-demo.js) Demo using the TLD type hashmap in JavaScript. * [js-info-demo.js](/examples/js-info-demo.js) Demo using the array of TLD info hashmaps in JavaScript. ### PHP Usage * 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\TldList::TLD_LIST` class constant array ```php