README
DomainSpot
Lookup a domains name, price, and availability over NodeJS
lookup (async)
Main function for searching domains
await lookup('thisisaverylongtest', ['com'])
// Will return
{
"thisisaverylongtest.com": "$12/year",
"averylongtest.com": "$12/year",
"thisisalongtest.com": "$12/year"
}
Parameter | Type | Description | Required |
---|---|---|---|
domain | String | The name of the domain you are searching for. | True |
extensions | String[] | Extensions you would like to include in search. If none are specified, every extension will be used. | False |