namehawk
v1.0.0
Published
π¦ CLI tool to check domain availability and compare pricing across 7+ registrars
Downloads
102
Maintainers
Readme
π¦ Namehawk
Hunt for the best domain deals across 7+ registrars in real-time.
Features
- 7 Registrars β Namecheap, Porkbun, GoDaddy, Cloudflare, Dynadot, Spaceship, Hover
- Parallel Scraping β All providers checked simultaneously
- Price Sorting β Results sorted lowest first
- Smart Suggestions β Alternative domains when your choice is taken
- Debug Mode β Screenshots and verbose logging
Installation
npm install -g namehawkOr use with npx:
npx namehawk search example.comUsage
# Search for a domain
namehawk search myawesome.app
# Show browsers (debug)
namehawk search myawesome.app --head
# Use specific providers
namehawk search myawesome.app -p namecheap,porkbun
# List providers
namehawk providersExample Output
π Searching for domain: myawesome.app
β Domain myawesome.app is AVAILABLE! π
π° Price Comparison:
ββββββ¬βββββββββββββββββββββ¬ββββββββββββββββ
β # β Provider β Price β
ββββββΌβββββββββββββββββββββΌββββββββββββββββ€
β π β Porkbun β $2.06 β
ββββββΌβββββββββββββββββββββΌββββββββββββββββ€
β 2 β Cloudflare β $9.77 β
ββββββΌβββββββββββββββββββββΌββββββββββββββββ€
β 3 β Namecheap β $12.98 β
ββββββ΄βββββββββββββββββββββ΄ββββββββββββββββ
π Quick Links:
Porkbun: https://porkbun.com/checkout/search?q=myawesome.app
Cloudflare: https://cloudflare.com/products/registrar/
Namecheap: https://namecheap.com/domains/registration/results/?domain=myawesome.app
β Best deal: Porkbun at $2.06, saving you $10.92 vs NamecheapProgrammatic Usage
import { checkAvailability, checkPricing, listProviders } from 'namehawk';
const available = await checkAvailability('example.com');
if (available) {
const prices = await checkPricing('example.com');
console.log('Cheapest:', prices[0]);
}Supported Registrars
| Registrar | Pricing | Suggestions | |-----------|---------|-------------| | Namecheap | β | β | | Porkbun | β | - | | GoDaddy | β | - | | Cloudflare | β | - | | Dynadot | β | - | | Spaceship | β | - | | Hover | β | - |
Requirements
- Node.js >= 18.0.0
- Chrome (downloaded automatically)
License
MIT Β© Mudit
Made with π¦ for domain hunters
