Websocket parser error in Node JS Socket

I have the following warning in my Node JS application: warn - websocket parser error: continuation frame cannot follow current operation code

This happened only once, but I have no idea what that means.

Does anyone have any ideas on this?

Thanks in advance.

+3
source share
1 answer

What version of node / ws are you using? I had the same warning (intermittently) when using the old version of ws (0.8.2) with modern node (6.9.1). I upgraded to version 1.1.1 (same version of node) and no longer saw this. Hope this helps.

0
source

All Articles