
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
@viero/webrtc-sfu-client
Advanced tools
WebRTC SFU client library by @vieroinc.
To see how viero's webrtc-sfu works either visit http://client.vcdemo.viero.tv or clone the example code from viero-webrtc-sfu-example on GitHub locally.
npm install --save @viero/webrtc-signaling-client
npm install --save @viero/webrtc-sfu-client
import { VieroWebRTCSignalingClient } from "@viero/webrtc-signaling-client";
import { VieroWebRTCSFUClient } from "@viero/webrtc-sfu-client";
const signaling = new VieroWebRTCSignalingClient(
"http://localhost:8090",
"some-channel"
);
const videochat = new VieroWebRTCSFUClient();
videochat
.join(signaling)
.then(() =>
VieroWebRTCSFUClient.createUserStream({ video: true, audio: true })
)
.then((stream) => videochat.setStreams([stream]))
.then((stream) => {
/* do something with the stream, eg:
VieroWindowUtils.createElement('video', {
attributes: { playsinline: '', autoplay: '' },
properties: { srcObject: stream, muted: true },
container: me,
});
*/
});
FAQs
WebRTC SFU client library by @vieroinc.
We found that @viero/webrtc-sfu-client 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.