
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.
Visualize and access audio data real time with React
Here you can find the documentation of the project.
Here you can see some visualizaitons done by us.
Run npm install soundy-js
Container:
import { SoundyProvider } from "soundy-js";
function Container() {
const playerRef = useRef(null);
return (
<div>
<audio
id="audioPlayer"
src="your_audio.mp3"
ref={playerRef}>
</audio>
<SoundyProvider playerRef={playerRef}>
<YourVisualization/>
</SoundyProvider>
</div>
);
}
Visualizer:
import useSoundy from 'soundy-js';
const YourVisualization = () => {
const {
getLowFrequencyData,
getMidFrequencyData,
getHighFrequencyData
} = useSoundy();
return (
<div>
... your visualization elements here
</div>
);
};
Visualizer:
import useAudioFeatures from 'soundy-js';
const YourVisualization = () => {
const playerRef = useRef(null);
const { getLowFrequencyData, getMidFrequencyData, getHighFrequencyData } =
useAudioFeatures(playerRef);
return (
<div>
<audio
id="audioPlayer"
src="your_audio.mp3"
ref={playerRef}>
</audio>
... your visualization elements here
</div>
);
};
Access Low, Mid or High frequency data of your audio
Retrieve Avarage of Low or Mid frequencies
Get the peak or the bottom of Low, Mid or High frequencies
Use the significant beat of the audio as a signal
Select a custom range of frequency data of your audio
We incredibly enjoy making audio visualizers using javascript only. This projects goal is to provide a library that can make this more approachable for others, by supplying the data from the audio via a React hook or Provider. We mostly experimented creating visualizations using Three.js, SVGs and basic HTML elements.
FAQs
Audio visualization library for React
We found that soundy-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.