Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
A Node.js library wrapper for Name.com's V4 API, designed to simplify domain management tasks such as querying domain information, managing DNS records, and handling domain registration and transfer.
A Node.js library wrapper for Name.com's V4 API, designed to simplify domain management tasks such as querying domain information, managing DNS records, and handling domain registration and transfer.
Install the package using npm:
npm i --save namecomv4
Ensure your tsconfig.json includes the following settings for optimal performance:
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ESNext"],
...
}
}
Here's a quick example to get you started:
import { NameComDomains } from "namecomv4";
const domainClient = new NameComDomains("username-test", "token", "https://api.dev.name.com");
domainClient.listDomains().then((domains: any) => {
console.log(domains);
});
const domainClient = new NameComDomains(LocalBaseConfiguration.NAMECOM_API_USER, LocalBaseConfiguration.NAMECOM_API_PASS, LocalBaseConfiguration.NAMECOM_API_URL);
domainClient.listDomains().then((domains: any) => {
console.log(domains);
});
domainClient.search( {keyword: "exampleeeee"}).then((searchResponse: SearchResponse) => {
console.log("[TEST] Searched domain results");
if (searchResponse.results && searchResponse.results.length > 0){
console.log("[TEST] has results");
searchResponse.results.forEach((searchResult: SearchResult) => {
console.log(JSON.stringify(searchResult));
console.log("[TEST]"+searchResult.domainName+ " purchasable:"+ searchResult.purchasable + " purchase price:"+ searchResult.purchasePrice);
if (searchResult.purchasable){
console.log("[TEST]"+"Purchasing domain "+ searchResult.domainName);
const purchaseDomain: CreateDomainRequest = {
domain: {domainName:searchResult.domainName},
purchasePrice: searchResult.purchasePrice,
purchaseType: searchResult.purchaseType,
};
domainClient.createDomain(purchaseDomain).then((purchaseResponse: CreateDomainResponse) => {
console.log("[TEST]"+"Purchase response:"+ JSON.stringify(purchaseResponse.domain) +" total paid"+ purchaseResponse.totalPaid);
if (purchaseResponse.domain){
console.log("[TEST]"+"Domain purchased"+JSON.stringify(purchaseResponse));
}
});
return;
}
console.log(searchResult.purchasable);
});
}
});
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A Node.js library wrapper for Name.com's V4 API, designed to simplify domain management tasks such as querying domain information, managing DNS records, and handling domain registration and transfer.
The npm package namecomv4 receives a total of 292 weekly downloads. As such, namecomv4 popularity was classified as not popular.
We found that namecomv4 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.