BiSON provides a JSON like encoding for JavaScript objects but focusses on providing a format that is optimized for use with WebSockets and other applications where bandwidth is a major concern.
The Library exports a encode and a decode method on either the global BISON
object in the Browser or on the module when used under Node.js.
// Encoding and decoding a Object
BISON.decode(BISON.encode({ key: 'value' })) // { key: 'value' }
BiSON saves between 30 to 55 percent of size when compared to JSON. With the average saving being around 45 percent. In order to achieve a maximum of compression BiSON makes some trade offs, therefore it is not 100% compatible with JSON.
- Floats are single precision
- Integers are limited to 32 bits
Important: For reasons of speed, BiSON does not perform any validation on the data you pass it.
E.g: Passing Numbers that are not within the valid range will result in non matching output.
Depends on the data being encoded and the JavaScript engine being used.
On chrome performance ranges from x0.5 to x2 the speed of JSON. With string serialization being x100 faster.
The tests can be run with nodeunit or in a browser of your choice.
BiSON converts all values into a bit stream in order to achieve maximum compression of the different data types, the format is described below.
Each value is prefixed by a 3 bit field that determines its type:
-
0: ABoolean, a1 bitfield with the value follows:0=false1=true
-
1: AIntegerin the range of-2147483648to+2147483648, a3 bitfield follows that contains the number of bits that make up the actual value:0=1 bit1=4 bits2=8 bits3=12 bits4=16 bits5=20 bits6=24 bits7=32 bits
After the above number of bits, a
1 bitfield follows containing thesign. -
2: A single percisionFloat, same data as theIntegerbut with an additional4 bitfield at the end containing the number of decimal places the value needs to be shifted to the right. -
3: AString, a3 bitfield with the following values:<= 28= The length in bytes.29= A8 bitfield follows containing the length in bytes.30= A16 bitfield follows containing the length in bytes.31= A32 bitfield follows containing the length in bytes.
The stream is padded to the next full byte followed by the raw string data.
-
4: Start of anArray, all values until the nexttype #6are to be appended to this array. -
5: Start of anObject. Pairs ofStringand a value follow, until the nexttype #6.The string is to be used as the key in the object to which the value will be associated with.
-
6: End of the last openedArrayorObject. -
7EithernullorEOS, a1 bitfield with the values follows:0=null1= End of Stream7= Invalid Stream
BiSON is licenses under MIT.