I am trying to create an HTML5 / JS application and use the Azure mobile service for my backend.
Based on a post from ScottGu , where it demonstrates source support and support for the npm module, I wonder if it is possible to use socket.io to enable real-time notifications and use WebSockets.
I can see how you can connect the module and use it for each specific request (for example, when the client sends POSTS to the resource, add a hook to broadcast the creation of the resource to all clients), but I do not know how to configure and share the socket object .io.
NB. I know about the built-in support for push notifications for iOS, Windows and Google, but it still does not provide a ready-made solution for web projects, so you need to use socket.io (or any other SignalR-esque equivalent).
source share