English | 中文
API Documentation JBOD Encoding Format Benchmark
JavaScript binary serialization and deserialization library. It supports more JS data types and has a small size after serialization. It can be used for transmission and storage.
It is inspired by ProtoBuf, and is more flexible than ProtoBuf. It is more suitable for dynamically typed languages like JavaScript.
Type | Notes |
---|---|
boolean | |
null | |
undefined | |
number | Supports NaN, -Infinity, +Infinity |
bigint | |
Uint8Array | |
string | |
RegExp | |
Array | |
Object | |
Symbol | Not significant, only the description attribute is retained after conversion |
Error | Only the cause, code, message, and name attributes are retained |
Map | |
Set |
Data type | Byte size (JSON) | Byte size (JBOD) |
---|---|---|
int(0~2147483647) | 1~ 10 | 1~5 |
int (-1~-2147483648) | 2~ 11 | 1~5 |
double | 1~22 | 8 |
boolean | 4(true)、5(false) | 1 |
null | 4 | 1 |
string (Set n as the UTF-8 encoding length of the string) | n+2 | n+(1~5) |
The data size of JBOD.encode()
is about 70% of JSON
The data size of structured encoding StructCodec.encode()
is 20%~40% of JSON.
Check out the simple code size comparison example
npm install jbod
import JBOD from "jbod";
const u8Arr = JBOD.encode(data);
const decodedData = JBOD.decode(u8Arr).data;
import JBOD from "jsr:@asn/jbod";
const u8Arr = JBOD.encode(data);
const decodedData = JBOD.decode(u8Arr).data;
import JBOD from "https://esm.sh/jbod";
const u8Arr = JBOD.encode(data);
const decodedData = JBOD.decode(u8Arr).data;
In some scenarios, the data structure is quite fixed, and transmitting type information can be redundant. For example, the key names of object types are very space-consuming and also have a significant impact on performance in the JavaScript environment. In some scenarios, the keys are fixed, and ideally, the encoding should not retain key information, only encode the values. The decoder should decode the values based on the predefined structure and then restore the object data. This feature is inspired by ProtoBuf.
Type symbol | Description | js type |
---|---|---|
dyI32 | 32-bit Integer (Dynamic length, zigzag + varints encoding ) | number |
dyI64 | 64-bit Integer (Dynamic length, zigzag + varints encoding ) | bigint |
i32 | 32-bit Integer | number |
i64 | 64-bit Integer | bigint |
f64 | 64-bit Float | number |
bool | Boolean | boolean |
string | string | |
binary | Uint8Array | |
any | Any type | |
anyArray | Array elements can be of any type | |
anyRecord | Object fields and values can be of any type | |
regExp | RegExp | |
error | Error | |
map | Map | |
set | Set | |
symbol | symbol |
Any type: The any type has an extra byte to hold type information compared to the fixed type
Suppose you need to define the following data structure:
interface Data {
name: string;
count?: number;
custom: any;
list: number[];
items: { key1: any; key2: any }[];
}
Defining Struct:
const struct = StructCodec.define({
name: { id: 1, type: "string" },
count: { id: 2, type: "dyI32", optional: true }, // Optional field
custom: { id: 111, type: "any" }, // Any type, or you can omit type
list: { id: 3, repeat: true, type: "dyI32" },
// Array of objects
items: {
id: 4,
repeat: true,
type: {
key1: { id: 1, type: "any" },
key2: { id: 2, type: "any" },
},
},
});
const rawObject = { name: "test", count: 9, custom: [1] };
const u8Arr = struct.encode(rawObject);
const decodedData = struct.decode(u8Arr).data;
console.log(decodedData);
Note that the id is used to map with the key name, it must be a positive integer, and it cannot be repeated.
For the any type, you don't have to write the type. In this case, you could have also defined it like this:
const struct = StructCodec.define({
name: { id: 1, type: "string" },
count: { id: 2, type: "dyI32", optional: true },
custom: 111,
list: { id: 3, repeat: true, type: "dyI32" },
items: {
id: 4,
repeat: true,
type: { key1: 1, key2: 2 },
},
});
The any type contains an extra byte to hold the type information, depending on your use case
import JBOD, { StructCodec } from "jbod";
import { Buffer } from "node:buffer";
function encodeJSON(data: any) {
return Buffer.from(JSON.stringify(data));
}
export const objData = {
disabled: false,
count: 100837,
name: "Documentation",
dataStamp: 4 / 7,
id: 876,
};
const anyStruct = StructCodec.define({ disabled: 1, count: 2, name: 3, dataStamp: 4, id: 5 });
const fixedStruct = StructCodec.define({
disabled: { id: 1, type: "bool" },
count: { id: 2, type: "dyI32" },
name: { id: 3, type: "string" },
dataStamp: { id: 4, type: "f64" },
id: { id: 5, type: "dyI32" },
});
console.log(encodeJSON(objData).byteLength); // 96
console.log(JBOD.encode(objData).byteLength); // 67 (70% of JSON)
console.log(anyStruct.encode(objData).byteLength); // 38 (55% of JSON)
console.log(fixedStruct.encode(objData).byteLength); // 34 (35% of JSON)