domine 1.0.0+hotfix4 domine: ^1.0.0+hotfix4 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.
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
...
Installation #
To install Domine without any additional steps, you can use Docker:
$ docker run breitburg/domine check "[1-12]am.co"
Alternatively, if you have Dart installed, you can run the following command in your terminal:
$ dart pub global activate domine
This command will install all the required dependencies and make domine
accessible.
Shout out to Robert-Jan Keizer's
domainchecker
for some inspiration.
Contribution #
Contributions to Domine are welcome! If you have any ideas, suggestions, bug reports, or feature requests, please feel free to open an issue on the GitHub repository.
If you'd like to contribute directly to the codebase, you can follow these steps:
- Fork the repository and clone it to your local machine.
- Create a new branch for your feature or bug fix:
git checkout -b my-branch
. - Make the necessary changes and additions.
- Run the tests to ensure they pass:
dart test
. - Commit your changes:
git commit -m "Add feature or bug fix"
. - Push to your branch:
git push origin my-branch
. - Open a pull request on the main repository.
Please ensure that your contributions align with the project's coding style and guidelines. Your involvement helps improve Domine for everyone.