English | 简体中文
This Node.js script can batch check the unregistered domain names in aabb format under a given TLD, such as xxyy.com
, ccdd.xyz
, and write the results of the available domain names to a txt file.
The script can be customized through the config object. You can set:
batchSize
: The number of domain names to query at a time.topLevelDomain
: The top-level domain you want to check (e.g., "com").waitTimeMs
: The wait time between queries (milliseconds).
The script outputs the available domain names to a text file named Available-Domains-<TLD>
.txt.
git clone
current repo.- Install dependencies with
pnpm install
. - Modify the
topLevelDomain
property in theconfig
object at the beginning of theconfig.js
file, such as changing it tofun
, to query all domains in the form of "aabb.fun". - Use
node aabb.js
ornode 111222.js
to run the format you want to inspect.
Want to check all com domains that look like 111222
- change the value of
topLevelDomain
tocom
in/checker/check-1112222.js
- run
pnpm run check-111222
Want to check for a customized format domain name
- create your own js file in the checker folder
- Write a function that generates an array of domain names that mimics
check-111222.js
, with the end goal being to pass an array to the checkDomains function, where each item in the array is a domain name, e.g.,['aaa.com', 'bbb.com' ...]'
. - Then run your js file directly Before running this script, make sure the Node.js environment is set up.