SpawnDev.BlazorJS.PeerJS
1.0.0
See the version list below for details.
dotnet add package SpawnDev.BlazorJS.PeerJS --version 1.0.0
NuGet\Install-Package SpawnDev.BlazorJS.PeerJS -Version 1.0.0
<PackageReference Include="SpawnDev.BlazorJS.PeerJS" Version="1.0.0" />
paket add SpawnDev.BlazorJS.PeerJS --version 1.0.0
#r "nuget: SpawnDev.BlazorJS.PeerJS, 1.0.0"
// Install SpawnDev.BlazorJS.PeerJS as a Cake Addin #addin nuget:?package=SpawnDev.BlazorJS.PeerJS&version=1.0.0 // Install SpawnDev.BlazorJS.PeerJS as a Cake Tool #tool nuget:?package=SpawnDev.BlazorJS.PeerJS&version=1.0.0
SpawnDev.BlazorJS.PeerJS
PeerJS simplifies peer-to-peer data, video, and audio calls.
SpawnDev.BlazorJS.PeerJS brings the amazing peerjs library to Blazor WebAssembly.
SpawnDev.BlazorJS.PeerJS uses SpawnDev.BlazorJS for Javascript interop allowing strongly typed, full usage of the peerjs Javascript library. Voice, video and data channels are all fully supported in Blazor WebAssembly. The SpawnDev.BlazorJS.PeerJS API is a strongly typed version of the API found at the peerjs repo.
Demo (Coming soon)
Getting started
Add the Nuget package SpawnDev.BlazorJS.PeerJS
to your project using your package manager of choice.
Modify the Blazor WASM Program.cs
to initialize SpawnDev.BlazorJS for Javascript interop.
Example Program.cs
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using SpawnDev.BlazorJS;
using SpawnDev.BlazorJS.PeerJS;
using SpawnDev.BlazorJS.PeerJS.Demo;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");
// Add SpawnDev.BlazorJS interop
builder.Services.AddBlazorJSRuntime();
// Run app using BlazorJSRunAsync extension method
await builder.Build().BlazorJSRunAsync();
Example Home.razor
@page "/"
@using SpawnDev.BlazorJS.JSObjects;
@using System.Text;
@using System.Text.Json;
@using SpawnDev.BlazorJS.JSObjects.WebRTC;
@implements IDisposable
<PageTitle>PeerJS Test</PageTitle>
<h1>PeerJS Test</h1>
<small>Open two windows and copy the ID from one to the other and click connect</small>
<br />
<a href target="_blank">Open in New Window</a>
<br />
<div>
<input style="width: 350px;" @bind=@id readonly></input>
</div>
<div>
<input placeholder="Remote Id" style="width: 350px;" @bind=@targetId></input>
<button disabled="@(dataConnection != null)" @onclick=@Connect>connect</button>
</div>
<div>
<input placeholder="message" style="width: 350px;" @bind=@msg></input>
<button @onclick=@Send>send</button>
</div>
<pre style="width: 600px; word-wrap: break-word; white-space: normal;">@((MarkupString)log)</pre>
@code {
[Inject] BlazorJSRuntime JS { get; set; }
Peer? peer = null;
DataConnection? dataConnection = null;
string id = "";
string targetId = "";
string msg = "";
string log = "";
protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender)
{
// Load the PeerJS Javascript library.
// the library can be loaded in the index.html instead
await Peer.Init();
peer = new Peer();
peer.OnOpen += Peer_OnOpen;
peer.OnClose += Peer_OnClose;
peer.OnError += Peer_OnError;
peer.OnConnection += Peer_OnConnection;
peer.OnCall += Peer_OnCall;
// sets _peer global var for debugging in dev tools
JS.Set("_peer", peer);
}
}
void Log(string msg)
{
log += $"{msg}<br/>";
StateHasChanged();
}
void Peer_OnConnection(DataConnection dataConnection)
{
Log("Peer_OnConnection");
InitDataConnection(dataConnection);
}
void Peer_OnCall(MediaConnection mediaConnection)
{
Log($"Peer_OnCall: {mediaConnection.Type}");
}
void Connect()
{
if (peer == null || dataConnection != null) return;
Log("Connect");
InitDataConnection(peer.Connect(targetId));
}
void InitDataConnection(DataConnection dataConnection)
{
if (this.dataConnection != null) return;
this.dataConnection = dataConnection;
Log($"InitDataConnection: {dataConnection.Label}");
dataConnection.OnOpen += DataConnection_OnOpen;
dataConnection.OnClose += DataConnection_OnClose;
dataConnection.OnData += DataConnection_OnData;
}
void DataConnection_OnData(JSObject msg)
{
if (msg.JSRef!.PropertyInstanceOf() == "String")
{
Log(">> " + msg.JSRef!.As<string>());
}
else
{
Log("DataConnection_OnData: non-string data");
}
}
void DataConnection_OnOpen()
{
Log("DataConnection_OnOpen");
Send($"Hello from {id}");
}
void DataConnection_OnClose()
{
Log("DataConnection_OnClose");
DisposeDataConnection();
}
void DisposeDataConnection()
{
if (dataConnection != null)
{
dataConnection.OnOpen -= DataConnection_OnOpen;
dataConnection.OnClose -= DataConnection_OnClose;
dataConnection.OnData -= DataConnection_OnData;
dataConnection.Dispose();
dataConnection = null;
}
}
void Send(string msg)
{
if (dataConnection == null) return;
dataConnection.Send(msg);
Log($"<< {msg}");
}
void Send() => Send(msg);
void Peer_OnOpen(string id)
{
this.id = id;
Log($"Peer_OnOpen: {id}");
StateHasChanged();
}
void Peer_OnClose()
{
Log("Peer_OnClose");
}
void Peer_OnError(JSObject error)
{
JS.Log("_error", error);
JS.Set("_error", error);
StateHasChanged();
}
public void Dispose()
{
DisposeDataConnection();
if (peer != null)
{
peer.OnOpen -= Peer_OnOpen;
peer.OnClose -= Peer_OnClose;
peer.OnError += Peer_OnError;
peer.OnConnection -= Peer_OnConnection;
peer.OnCall -= Peer_OnCall;
peer.Destroy();
peer.Dispose();
peer = null;
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.AspNetCore.Components.WebAssembly (>= 6.0.25)
- SpawnDev.BlazorJS (>= 2.2.105)
-
net7.0
- Microsoft.AspNetCore.Components.WebAssembly (>= 7.0.14)
- SpawnDev.BlazorJS (>= 2.2.105)
-
net8.0
- Microsoft.AspNetCore.Components.WebAssembly (>= 8.0.1)
- SpawnDev.BlazorJS (>= 2.2.105)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.