Making Anonymous Chat Website with SignalR
Hi Everyone! I attended a webinar that explained the usage of SignalR in a project. I have been interested in this and decided to make a project with SignalR. I wanted to make something different on the internet. First of all, I would like to explain what SignalR is. Before the definition of it, we have to mention about this real-time application and why we should use it. For example; In messaging application, we can see the recieved message without refreshing the page. Lets look at the definition of SignalR; It is an open-source .Net library to develop real-time project. While client-server communication is refreshing each request in normal http connection, in SignalR there is a non-stop connection between client and server. Thanks to RPC (Remote Procedure Calls) feature in SignalR, it calls the Javascript on the clintside in our browser on the server side. If there is any change, serve...