You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Great, glad it's going!

    when reading data using the .on('data', function(data) {...}), do I need to create a buffer out of the string? Is the data always string? The docs seem to say so

    Yes, the data is always a string. You can use it as-is using data.charCodeAt(..), but if you want to access the binary data as an array, a nice easy way is to use E.toArrayBuffer(string)

About

Avatar for Gordon @Gordon started