Package Exports
- @coderbuzz/msgpack
Readme
Msgpack — @coderbuzz/msgpack
High-performance MessagePack serialization for TypeScript — encodes JSON-compatible values to compact binary representation.
Installation
npm install @coderbuzz/msgpackQuick Start
import { decode, encode } from "@coderbuzz/msgpack";
const bytes = encode({ name: "Alice", age: 30, active: true });
// => Uint8Array (compact binary)
const value = decode(bytes);
// => { name: "Alice", age: 30, active: true }Documentation
Full API reference, examples, and migration guide: DOCS.md
License
MIT © 2026 Indra Gunawan