I develop a some socket bridge between C# server and node.js client.
Firstly, I thought to use legacy TCP/IP socket, but on second thought websocket is way too easier in async style programming of node.
XSockets.NET looks good and clean, and I will use it as a websocket server.
I know ws
is widely used for fundamental websocket layer for node, but we have socket.io or engine.io. I wonder if socket.io-client is a proper choice as a socket client, and want to double check what I miss.
Do you have any other option in this case?
Perhaps, any abstract layer is not needed, and I should use only ws
..
Thanks!