
Product
Introducing Pull Request Stories to Help Security Teams Track Supply Chain Risks
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
@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 53 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.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.