
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
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)
The npm package dme2 receives a total of 4 weekly downloads. As such, dme2 popularity was classified as not popular.
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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.