1.0.0 • Published 4 years ago

domainspot v1.0.0

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
4 years ago

DomainSpot

npm.io npm.io npm.io

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"
    }
ParameterTypeDescriptionRequired
domainStringThe name of the domain you are searching for.True
extensionsString[]Extensions you would like to include in search. If none are specified, every extension will be used.False

Contributions