You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it is becoming crucial to support the blob binaryType in Ejecta's WebSocket. As far as I can tell both react-native(1) and nodejs(2) do not support arraybuffer.
Being able to interface properly with these very popular libraries would be wonderful for Ejecta.
React Native doesn't support Blobs either. Blobs are not a part of JSC, but of WebKit. Typed Arrays are at least supported directly in JSC, but there's still no API to deal with them in C land. nodejs/ws is able to send and receive binary data (binary flag).
Ejecta doesn't care if the WebSocket Server sends and receives binary data as Blobs or ArrayBuffers, because it's just binary data. The Server can do whatever it wants with it. So if the server is not able to handle binary data, it's the server's problem.
I think it is becoming crucial to support the blob binaryType in Ejecta's WebSocket. As far as I can tell both react-native(1) and nodejs(2) do not support arraybuffer.
Being able to interface properly with these very popular libraries would be wonderful for Ejecta.
(1) facebook/react-native#1829
(2) websockets/ws#441
The text was updated successfully, but these errors were encountered: