Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
check-domain
Advanced tools
A simple component to check the status of a domain (whois, availability, expired, TrustFlow, number of indexed pages, ...)
Retrieve informations about one domain:
In order to get all info, you need to provide your majestic API key, your whoisxmlapi credential & your Semrush API key. Without those setting, it returns only dns resolution, ip, ping & indexed pages.
We plan to support other APIs notably for the whois data. Feel free to suggest your favorite ones.
$ npm install check-domain --save
var checkDomain = require("check-domain");
var options = {
domain : "domainToCheck.com",
majesticKey : "[add here your majestic key]",
whois : {user : "[your whoisxmlapi name]", password : "[your whoisxmlapi password]"},
semrushKey : "[add here your semrush key]",
};
checkDomain(options,
function(error, result) {
console.log(result); // see the complete result structure
console.log(result.isDNSFound);
console.log(result.ip);
console.log(result.isAlive);
console.log(result.isAvailable);
console.log(result.majestic); // see the json structure provided by http://developer-support.majestic.com/api/commands/get-index-item-info.shtml
console.log(result.whois); // see the json structure provided by http://www.whoisxmlapi.com
console.log(result.semrush); // The Semrush datas
console.log(result.primaryIndex);
console.log(result.googleIndex);
console.log(result.secondaryIndex);
// We add extra fields in the whois structure
console.log(result.whois.isValidDomain);
console.log(result.whois.missingData); // The whois database doesn't contain info for this domain
console.log(result.whois.isPendingDelete);
console.log(result.whois.isRedemptionPeriod);
console.log(result.whois.createdDate);
console.log(result.whois.expiresDate);
console.log(result.whois.expiredWaitingTime);
});
The options object (see below) can contain the following parameters. Depending your use case, there are some options that can help to avoid an unnecessary cost for some APIs.
FAQs
A simple component to check the status of a domain (whois, availability, expired, TrustFlow, number of indexed pages, ...)
The npm package check-domain receives a total of 12 weekly downloads. As such, check-domain popularity was classified as not popular.
We found that check-domain demonstrated a not healthy version release cadence and project activity because the last version was released 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.