I would like to implement a websockets server with asp.net core. At the moment it seems that you have 2 different packages for this:
- "Microsoft.AspNetCore.WebSockets.Server": "0.1.0 - *"
- "Microsoft.AspNetCore.SignalR.Server": "0.2.0 - *"
I have the following questions:
- What is the difference between these two packages (I need the simplest implementation)
- From the version, it seems that these packages are in the early alpha stage. Is there something more mature that I can use with the .net kernel?
- Can someone provide me with recommendations for good tutorials on how to implement asp.net core websites? Google gives me some outdated results.
source share