Installation · Usage · Example
Domain Checker is a a command-line application that retrieves domain names and their alias domains with different top-level domains (TLDs) and checks their availability.
To install the Domain Checker application, follow these steps:
-
Clone the repository:
git clone https://github.com/WillKirkmanM/domain-checker.git
-
Navigate to the project directory:
cd domain-checker
-
Install the necessary dependencies:
go mod tidy
To run the application, use the following command:
go run cmd/main.go <base-domain> <tld1> <tld2> ...
go run cmd/main.go example com net org
This command will check the availability of the domains example.com
, example.net
, and example.org
.