domine 1.0.0+hotfix3 domine: ^1.0.0+hotfix3 copied to clipboard
Search domains with expressions. Insert numbers, letters, and any TLDs in one query.
Domine #
Search domains with expressions. Insert numbers, letters, and any TLDs in one query with Domine. It uses reverse-engineered Instant Domain Search API, so it could break at any time.
Installation #
If you have Dart installed, run the following command in your terminal:
$ dart pub global activate domine
This will install all the necessary dependencies and make domine
accessible.
Another option for installation involves obtaining the binary file from the GitHub releases.
Features #
- Numbers: Interate from 1 to 12 with
domine check "[1-12]am.com"
to check domains such as1am.com
,2am.com
... - Letters: Check the whole alphabet with
domine check "letter-[a-z].com"
forletter-a.com
,letter-b.com
... - Popular TLDs at once: Use the asterisk symbol to check multiple TLDs at once with
domine check "domine.*"
fordomine.com
,domine.org
... - Multiple queries: Ask Domine to make multiple queries at one command
domine check "[1-12]am.com" "letter-[a-z].com"
. - Combine expressions: Use
domine check "l[a-z]n[1-2].*"
to getlan1.com
,lan2.com
...
Shout out to Robert-Jan Keizer's
domainchecker
for some inspiration.