JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 59
  • Score
    100M100P100Q111577F
  • License MIT

High-performance MessagePack serialization for TypeScript - encode, decode, and zero-copy variants.

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/msgpack

Quick 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