Skip to content

gowthamgts/domain-checker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Domain Checker

This tool checks for available domain names. See code example below. A command line interface is in the works.

names = ['example', 'hello', 'summer']
tld = 'se'

# A cooldown value of 1.5 or above is recommended.
# DNS servers will otherwise rate limit the script (and timeout requests).
Finder.new(names, tld, 1.5)
Finder.new(('a'..'z').permutation(3).first(10), tld, 1.5)

# You can pass additional parameters, such as output options
# (default: file and stdout), or a timeout value (default: 10).
Finder.new(names, tld, 1.5, { timeout: 10, to_file: false, to_stdout: true })

About

A domain availability checker

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%