nodejs-book
nodejs-book copied to clipboard
ws@8 data is blob
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. });