
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
Simple cross fader between two AudioNodes for WebAudio.
npm install crossfader
var crossfader = require('crossfader');
var c = crossfader(context, node1, node2);
c.connect(context.destination);
document.getElementById('slider').addEventListener('input', function(){
c.fade.value = parseFloat(this.value);
});
eg : var c = crossfader(context, node1, node2);
context: AudioContext - The AudioContext within which the AudioNodes have been created.node1 : AudioNode - Any AudioNode within the AudioContext. Will be assigned to the negative value of the fade property.node2 : AudioNode - Any AudioNode within the AudioContext. Will be assigned to the negative value of the fade property.connect : Connect the crossfade Node to other AudioNodes.
eg :
c.connect(context.destination);
destination : AudioNode - The AudioNode to connect the output of the crossfader to.disconnect : Disconnect the crossfade Node from other AudioNodes.
eg :
c.disconnect();
fade: AudioParam - A value in the range [-1,1] that defines how much to cross fade between node1 and node2.
eg:
c.fade.value = 0.5; //Cross fade position with equal volume from both AudioNodes
c.fade.linearRampToValueAtTime(1, context.currentTime + 5); // Automation
fade property is an AudioParam and supports all AudioParam automation methods.
A fade value of -1 implies 100% volume on node1, and 0% volume on node2, while a fade value of 1 implies 0% volume on node1, and 100% volume on node2.
The mapping between the value of fade and the volume follows the equal power curve.
Thanks to tambien for the his idea of using a generator + shaper to create a-rate, first class, custom AudioParams (like fade in this case).
MIT
See License file
FAQs
Simple cross fader between two AudioNodes for WebAudio.
We found that crossfade 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.