1.2.3 • Published 10 months ago

serdebin v1.2.3

Weekly downloads
-
License
WTFPL
Repository
github
Last release
10 months ago

jserde - Bit-level serialization written in typescript

Use

Should take a look at test.ts!

Another JWT replacement?

Known limitations

Currently:

  • You can't store negative, floats, just unsigned int

Now with helper module (deserialization below)

import { u, vstr, build } from "serdebin/helper";
const uint8array = build(
  u(8, 255),
  false,
  true,
  vstr("Hello World!"),
  vstr("Hello World!", 8),
);

Detailed use (old)

  • Serialization
import {
  Deserialization,
  build,
  decu8,
  extract_scalar,
  extract_str,
  makeFixed,
  toui8a,
} from "serdebin";

// example data lol
const data = [
  false, // Boolean can be passed directly
  ...makeFixed(extract_scalar(32), 6),
  ...extract_str("Hello World!"), // Remember your string length?
  ...makeFixed(extract_str("no bye"), 16/* Max string length*/ * 8)
  ...makeFixed(extract_scalar(255), 8),
  ...makeFixed(extract_scalar(Date.now()), 42),
];

const uint8array = build(data), // build into utf-8 data
  decodedui8 = decu8(uint8array)
  • Deserialization
const reader = new Deserialization(se);
const funny = reader.b(),
  // read unsigned
  min = reader.u(6),
  // read string
  msg = reader.s(12),
  msgf = reader.s(16),
  max = reader.u(8),
  date = reader.u(42);

Strategies (old)

  • Variable length string
const words = "You know the rules, and so do I";
[
  ...makeFixed(extract_scalar(words.length), 24), // parse into 24bit string
  ...extract_str(words), // and read it
];
const reader = new Deserialization(ui8a);
const str = reader.s(reader.u(24));

...and more, if you smart enough

Benchmark???

I found this interesting.

bun's result:
[1.39ms] str
[0.18ms] ser
[0.05ms] de
node's result:
str: 0.452ms
ser: 0.179ms
de: 0.007ms
and browser's
str: 0.3330078125 ms
ser: 0.0732421875 ms
de: 0.004150390625 ms

so it must be extract_*'s fault, maybe?

haha, enjoy!

This project was created using bun init in bun v0.6.14. Bun is a fast all-in-one JavaScript runtime.

1.2.3

10 months ago

1.2.2

10 months ago

1.2.1

10 months ago

1.2.0

10 months ago

1.1.0

10 months ago

1.0.0

10 months ago