I have some experience with socket.io and the main reason I was using it previously is to have a fallback in older browsers. Currently I have to develop an app with websockets, which has specific browser requirements. When I checked the browser matrix for websocket support, I see that all the browsers I need support websockets.
So right now I have a dilemma. Should I stick with socket.io or implement it with pure websockets? When I checked websocket API, I see that it is super simple. I made a small research into this problem and also this question sounds similar, it's main component is compatibility with old browsers (which I do not care).
So is there any advantage of socket.io if compatibility is not an issue?