https://github.com/antelcat/protoo-sharp
ported to .NET from https://github.com/versatica/protoo
https://github.com/antelcat/protoo-sharp
aspnetcore protoo protoo-server server-side signaling websocket
Last synced: 6 months ago
JSON representation
ported to .NET from https://github.com/versatica/protoo
- Host: GitHub
- URL: https://github.com/antelcat/protoo-sharp
- Owner: Antelcat
- License: mit
- Created: 2024-10-22T14:45:05.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-01-19T14:58:45.000Z (9 months ago)
- Last Synced: 2025-03-27T01:01:30.913Z (6 months ago)
- Topics: aspnetcore, protoo, protoo-server, server-side, signaling, websocket
- Language: C#
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ProtooSharp
ported to .NET from [protoo](https://github.com/versatica/protoo)## Usage
in ASP.NET
```csharp
var builder = WebApplication.CreateBuilder();builder.Services.AddProtooServer(); // add protoo server
var app = builder.Build();
app.UseWebSockets(); // use websockets before map protoo server
app.MapProtooServer("/{your}/{route}"); //map protoo serverapp.Run();
```