
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
domain-lookup
Advanced tools
✅ Free to use! 🌍 A powerful CLI tool to check domain name availability using WHOIS. Supports checking multiple domains at the same time. Works both as a CLI tool and as a Node.js module.
Install globally via npm:
npm install -g domain-lookup
Or using yarn:
yarn global add domain-lookup
Or install it in a Node.js project:
npm install domain-lookup
You can check the availability of a single domain using the following command:
domain-lookup google.com
If the domain is available, you will see:
✅ google.com is Available!
If the domain is not available, you will see:
❌ google.com is Not Available!
You can check multiple domains at once by providing a .txt
file containing a list of domain names.
.txt
FileCreate a text file (e.g., domains.txt
) and list the domains you want to check, one per line:
google.com
mywebsite.net
randomdomain.org
example.io
Run the following command to check all domains listed in the file:
domain-lookup -f domains.txt
After running the command, you will see an output like this:
✅ mywebsite.net is Available!
❌ google.com is Not Available!
✅ randomdomain.org is Available!
❌ example.io is Not Available!
📌 This allows you to quickly scan multiple domains without having to check them one by one! 🚀
npm install domain-lookup
const { checkDomain, checkDomainsFromFile } = require("domain-lookup");
checkDomain("example.com")
.then(() => console.log("Check complete!"))
.catch(err => console.error("Error:", err));
checkDomainsFromFile("domains.txt")
.then(() => console.log("Batch check complete!"))
.catch(err => console.error("Error:", err));
📌 You can now use domain-lookup
in any Node.js project! 🚀
checkDomain(domain)
Checks a single domain's availability.
checkDomainsFromFile(filePath)
Checks multiple domains listed in a text file.
Contributions are welcome! Fork the repository, create a branch, make changes, and submit a PR. 🚀
This project is licensed under the MIT License.
🚀 Happy Coding! 🎮✨
FAQs
A simple CLI tool to check domain name availability using WHOIS.
The npm package domain-lookup receives a total of 13 weekly downloads. As such, domain-lookup popularity was classified as not popular.
We found that domain-lookup demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.