What is the state of the sites in the asp.net core

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.
+5
source share
2 answers

Websockets Tutorial

SignalR Tutorial

Regarding maturity, I think this is the best you can get at the moment.

+3
source

I think you want to use Microsoft.AspNetCore.WebSockets . You can find some samples in the repo: https://github.com/aspnet/WebSockets

+2
source

Source: https://habr.com/ru/post/1265112/


All Articles