## Overview It is a library designed to optimize the size of the messages we send over the network.
npm install stream-binaryThe best way to teach how it is used is with an example, so let's go.
npm install stream-binary
`
yarn:
`
yarn add stream-binary
`$3
`ts
// Initialize BinaryWritter
const writer = new BinaryWriter();// Write any string
writer.writeString('BinaryReaderWorking');
const buffer = writer.getBuffer();
const bufferHex = buffer.toString('hex'); // 001342696e617279526561646572576f726b696e67
`$3
`ts
// Buffer to read (message packet)
const buffer = Buffer.from('001342696e617279526561646572576f726b696e67', 'hex');
// Initialize BinaryReader with entry buffer
const reader = new BinaryReader(buffer);
// read buffer content
const result = reader.readString();
``