npm.io
0.12.2 • Published 2 years ago

@polywrap/msgpack-js

Licence
MIT
Version
0.12.2
Deps
1
Size
13 kB
Vulns
0
Weekly
0
Stars
3

@polywrap/msgpack-js

TypeScript / JavaScript implementation of the WRAP MsgPack encoding standard.

Usage

import { msgpackEncode, msgpackDecode } from "@polywrap/msgpack-js";

const test = {
  foo: 5,
  bar: [true, false],
  baz: {
    prop: "value"
  }
};

const encoded: Uint8Array = msgpackEncode(test);

const decoded = msgpackDecode(encoded);

expect(decoded).toEqual(test);