
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
samsung-multiroom
Advanced tools
by @cosminlupu
Wrapper for the API provided by the Samsung MultiRoom speakers (R1 R3 R5)
Tested only with a Samsung R1 speaker
const SamsungMultiroom = require('samsung-multiroom');
const sm = new SamsungMultiroom({
host: '192.168.0.4',
port: 55001, //optional
timeout: 5000 //optional
});
sm.getVolume( (error, volume) => {
if(error){
console.log(error);
return;
}
console.log(volume);// 0-100
});
sm.setVolume(volume, (error, volumeSet) => {
if(error){
console.log(error);
return;
}
console.log(volumeSet);//boolean
});
sm.getMute( (error, muted) => {
if(error){
console.log(error);
return;
}
console.log(muted);//boolean
});
sm.setMute(true, (error, muteSet) => {
if(error){
console.log(error);
return;
}
console.log(muteSet); //boolean
});
MIT
FAQs
Wrapper for API that allows controlling Samsung Multiroom speaker
We found that samsung-multiroom 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.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.