typed-array-buffer-schema icon indicating copy to clipboard operation
typed-array-buffer-schema copied to clipboard

A Schema based Object to Buffer converter

Results 3 typed-array-buffer-schema issues
Sort by recently updated
recently updated
newest added

Hey, thought you/typed-array-buffer-schema may want to eventually add serializing/deserializing half-precision float16s. We have a float-heavy networked game, and lossy conversion to half floats is mostly negligible, especially on mostly visual...

I have a simple chatMessage model for my app: ``` const chatMessage = BufferSchema.schema('chatMessage', { message: {type: string16, length: 200}, }); export const chatMessageModel = new Model(chatMessage); ``` The first...

Currently, it seems that you can only have fixed-length strings. It would be beneficial to have variable-length strings by including the size of the message as part of the payload....