doghappy / socket.io-client-csharp

socket.io-client implemention for .NET
MIT License
729 stars 125 forks source link

Can we create socket io server in asp.net mvc c#? Please suggest me, How? #263

Open sandeep-mehra opened 2 years ago

sandeep-mehra commented 2 years ago

I want to create socket io server in asp.net mvc C#. Can anyone suggest.

doghappy commented 2 years ago

socket.io server is a nodejs library, there seems to be no c# implementation of socket.io server.

you can use SignalR, it is a library for ASP.NET/Core developers that simplifies the process of adding real-time web functionality to applications. Real-time web functionality is the ability to have server code push content to connected clients instantly as it becomes available, rather than having the server wait for a client to request new data.