
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
Import the module
var dme = require('dnsmadeeasy');
Setup config
var config = {
apikey: <INSERT_APIKEY>,
secret: <INSERT_APISECRET>,
debug: false
};
Create client
var client = dme.createClient(config);
Access ManagedDNS
var mgdns = new dnsmadeeasy.ManagedDNS(client);
mgdns.getAllDomains(function(err, data){
if (err) console.log(err);
var domains = data.data;
domains.forEach(function(domain){
mgdns.getDomain(domain.id, function(err, data){
if (err) console.log(err);
console.log(data);
});
});
});
All api calls require a callback that exposes the error (if any) and the data ex.
function(err, data)
To know exactly what parameters to pass in the data envelope, consult the DNSMadeEasy API V2.0 Documentation by going here
GPL
FAQs
This module allows one to connect to DNSMadeEasy's APIs (V2.0)
We found that dme2 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.