A simple CLI which takes a domain registrant and provides all domains for the registrant
After clone run npm link
in the working directory and use
domains-by-registrar
to use the CLI.
USAGE
$ domains-by-registrar
OPTIONS
-h, --help show CLI help
-p, --pretty
-r, --registrant=registrant (required)
-v, --version show CLI version
Email example:
[
{
"domain": "discordapp.com",
"creation": "2015-02-26",
"registrar": "NAMECHEAP INC."
},
{
"domain": "discordapp.net",
"creation": "2015-08-14",
"registrar": "ENOM, INC."
}
]
Registrant name example:
domains-by-registrar -r "Discord, Inc." -p
[
{
"domain": "discordapp.com",
"creation": "2015-02-26",
"registrar": "NAMECHEAP INC."
},
{
"domain": "discordapp.net",
"creation": "2015-08-14",
"registrar": "ENOM, INC."
}
]