Skip to content
Back to Libraries

msgpackr

700

Fast MessagePack encoder/decoder

🔥 TrendingData Serialization
License
MIT
Released
2020
Stars
700

Use Cases

Compact JSON alternative, WebSocket communication, efficient storage

Code Example

import { pack, unpack } from 'msgpackr';
const encoded = pack({ hello: 'world' });
const decoded = unpack(encoded);

Related Libraries