0.2.17 • Published 7 months ago
@rtco/client v0.2.17
@rtco/client
Artico client library. Please refer to the documentation for more information.
Installation
npm install @rtco/client
Usage
The following example shows how to connect two peers and share audio/video or any data between them:
Peer 1
import { Artico, type Call } from "@rtco/client";
const rtco = new Artico();
rtco.on("open", (id: string) => {
// We're now connected to the signaling server.
// `id` refers to the unique ID that is currently assigned to this peer, so remote peers can connect to us.
console.log("Connected to signaling server with peer ID:", id);
});
rtco.on("close", () => {
console.log("Connection to signaling server is now closed.");
});
rtco.on("error", (err) => {
console.log("Artico error:", err);
});
rtco.on("call", (call: Call) => {
// The calling peer can link any metadata object to a call.
const { metadata } = call;
const remotePeerName = metadata.name;
console.log(`Call from ${remotePeerName}...`);
// Answer the call.
call.answer();
call.on("stream", (stream, metadata) => {
// Stream was added by remote peer, so display it somehow.
// `metadata` can be appended by the remote peer when adding the stream.
});
});
Peer 2
import { Artico, type Call } from "@rtco/client";
const remotePeerId = "<ID of target remote peer>";
const rtco = new Artico();
const call = rtco.call(remotePeerId);
call.on("error", (err) => {
console.log("Call error:", err);
});
call.on("close", () => {
console.log("Call closed");
});
// ...
navigator.mediaDevices
.getUserMedia({
video: true,
audio: true,
})
.then((stream) => {
// send stream to Peer 1 with metadata indicating type of stream
call.addStream(stream, {
type: "camera",
});
})
.catch(console.error);
0.2.17
7 months ago
0.2.16
7 months ago
0.2.15
7 months ago
0.2.14
7 months ago
0.2.13
7 months ago
0.2.12
8 months ago
0.2.11
11 months ago
0.2.10
12 months ago
0.2.9
12 months ago
0.2.7
1 year ago
0.2.6
1 year ago
0.2.8
1 year ago
0.2.5
1 year ago
0.2.1
1 year ago
0.2.0
1 year ago
0.2.3
1 year ago
0.2.2
1 year ago
0.2.4
1 year ago
0.1.30
1 year ago
0.1.31
1 year ago
0.1.32
1 year ago
0.1.28
1 year ago
0.1.29
1 year ago
0.1.27
1 year ago
0.1.20
1 year ago
0.1.21
1 year ago
0.1.22
1 year ago
0.1.23
1 year ago
0.1.24
1 year ago
0.1.25
1 year ago
0.1.26
1 year ago
0.1.19
1 year ago
0.1.17
1 year ago
0.1.18
1 year ago
0.1.16
1 year ago
0.1.15
1 year ago
0.1.10
2 years ago
0.1.11
2 years ago
0.1.12
2 years ago
0.1.13
2 years ago
0.1.14
2 years ago
0.1.8
2 years ago
0.1.7
2 years ago
0.1.9
2 years ago
0.1.6
2 years ago
0.1.5
2 years ago
0.1.4
2 years ago
0.1.3
2 years ago
0.1.2
2 years ago
0.1.1
2 years ago
0.1.0
2 years ago