
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
node-mrswatson
Advanced tools
Node.js wrapper for MrsWatson.
$ [sudo] npm install node-mrswatson
Modified from example.js file.
var mrswatson = require("node-mrswatson");
// Cutsom directory for VST plugins (optional)
mrswatson.pluginRoot = "K:\\Program Files (x86)\\VstPlugins";
// Use WINE for Windows .dll VSTs (optional)
mrswatson.wine = false;
// List plugins
mrswatson.listPlugins(function(err, plugins) {
if (err) {
return console.error("ERROR: \n", err);
}
console.log(plugins);
});
//////////////////////////////////////////////////////////////////////
// EXAMPLE A: Process audio with a single VST effect with parameters
//////////////////////////////////////////////////////////////////////
var obj = {
inputFile: "C:\\test.wav",
outputFile: "C:\\example_a.wav",
plugins: ["dblue Crusher"],
parameters: ["0,0.2", "5,0.99"]
};
mrswatson.processAudio(obj, function(err, result) {
if (err) {
return console.error("ERROR: \n", err);
}
// Print the result log
console.log(result);
});
//////////////////////////////////////////////////////////////////////
// EXAMPLE B: Process audio with chain of VST effects (with presets)
//////////////////////////////////////////////////////////////////////
var obj2 = {
inputFile: "C:\\test.wav",
outputFile: "C:\\example_b.wav",
plugins: [
// NOTE: these two notations are equivalent
"dblue Crusher,C:\\dblue_preset.fxp",
["CamelCrusher", "C:\\camel_preset.fxp"],
]
};
mrswatson.processAudio(obj2, function(err, result) {
if (err) {
return console.error("ERROR: \n", err);
}
// Print the result log
console.log(result);
});
FAQs
Node.js wrapper for MrsWatson
We found that node-mrswatson 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.