domine 1.0.0 domine: ^1.0.0 copied to clipboard
Search and purchase domains right from the terminal.
Domine #
Search domains with regular 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.
$ domine check "example.*" "[1-12]am.co" "pu[a-z]r.studio"
44 domains are available
✔ example.se ✔ 2am.co ✔ pulr.studio ...
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.