NinjaHorder is a stealthy domain availability checker built with Nuxt 3. It allows you to discreetly check the availability of multiple domain names across various Top-Level Domains (TLDs) without leaving a trace on domain registrars' servers.
Traditional domain searches often involve querying domain registrars directly, which can:
- Leave a trace of your search history
- Potentially influence domain pricing based on perceived interest
- In some cases, lead to domain front-running
NinjaHorder takes a different approach:
- It uses DNS over HTTPS (DoH) to check domain availability directly from your browser
- This method is more discreet and doesn't interact with domain registrars' WHOIS servers
- It allows you to scout for domains without alerting registrars or potential competitors
NinjaHorder performs DNS lookups using Cloudflare's DNS over HTTPS API. By analyzing the DNS response, it can infer whether a domain is likely to be available or already registered.
Note: While this method is generally reliable, it's not 100% accurate. Some edge cases may produce false positives or negatives. Always double-check with a registrar before making purchase decisions.
- Check domain availability across multiple TLDs simultaneously
- Choose from popular, country-specific, and custom modern TLDs
- Stealth checking using DNS over HTTPS
- Fast, client-side processing
- Responsive design for desktop and mobile use
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.