I can\'t figure out to send byte array while being connected to server on Debian. Is there any alternative to sending string via client.write()? I tried clien
client.write()
clien
Buffer didn't work for me because I had a custom class named exactly as node.js's one. This works:
testBuff = new Buffer([4, 0, -1, 1, 32, 0]); client.write(testBuff);