nodejs-book icon indicating copy to clipboard operation
nodejs-book copied to clipboard

ws@8 data is blob

Open ZeroCho opened this issue 3 years ago • 1 comments

websocket.on('message', function message(data, isBinary) { const message = isBinary ? data : data.toString(); // Continue as before. });

websocket.on('close', function close(code, data) { const reason = data.toString(); // Continue as before. });

ZeroCho avatar Apr 09 '22 05:04 ZeroCho