
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@rtco/peer
Advanced tools
Artico peer library. Please refer to the documentation for more information.
npm install @rtco/peer
The following example show how to connect two peers and share audio/video or any data between them:
import Peer from "@rtco/peer";
const p1 = new Peer({ initiator: true });
const p2 = new Peer();
p1.on("signal", (data) => {
// signal p2 somehow
p2.signal(data);
});
p2.on("signal", (data) => {
// signal p1 somehow
p1.signal(data);
});
p1.on("connect", () => {
// data channel is connected and ready to be used
p1.send("Hey Peer 2, this is Peer 1!");
});
p2.on("data", (data) => {
console.log("Received a message from Peer 1:", data);
});
p2.on("stream", (stream) => {
console.log("Received new stream from Peer 1:", stream);
});
p1.on("replacetrack", (oldTrack, newTrack) => {
console.log("Track replaced:", oldTrack.id, "->", newTrack.id);
});
// ...
navigator.mediaDevices
.getUserMedia({
video: true,
audio: true,
})
.then((stream) => {
// send stream to Peer 2
p1.addStream(stream);
// Example: Replace video track (e.g., switch camera)
navigator.mediaDevices
.getUserMedia({ video: { facingMode: "environment" }, audio: false })
.then((newStream) => {
const oldVideoTrack = stream.getVideoTracks()[0];
const newVideoTrack = newStream.getVideoTracks()[0];
// Replace the track
p1.replaceTrack(oldVideoTrack, newVideoTrack);
// Stop the old track
oldVideoTrack.stop();
})
.catch(console.error);
})
.catch(console.error);
FAQs
artico peer library
The npm package @rtco/peer receives a total of 39 weekly downloads. As such, @rtco/peer popularity was classified as not popular.
We found that @rtco/peer demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.