Currently, im sending base64
strings over my socket.io 0.9
to send images around in my chat app.
I upgraded to socket.io 1.0,
which in the documentation says it supports Binary
data, like Buffers
. I have little knowledge over what Buffers are, but can seem to get it work.
What is the advantage for me, would i move all my base64
string into Buffers
and sending them, instead of the raw string. Does the Binary support do anything smart for large messages?