A pure JS implementation of V8's value serialization format.
V8 has an internal object serialization format that implements the Structured Clone Algorithm and is used to implement things like structuredClone
and postMessage
.
Node users have access to this format via the v8
module, but other JS runtimes, including all browser environments, can only use it through userland implementations. This library is currently the only such implementation that supports the latest protocol version and supports both encoding and decoding. (See Prior Art for others).
The module is a direct port of the C++ source from the V8 repository and aims for the best cross-section between accuracy and performance.
The format is quite neat and purpose-built to handle many of JS' peculiarities, such as holes in arrays, unmatched surrogate pairs in strings and primitives wrappers. Out of all the ways to serialize a JavaScript object, it is likely the best choice, especially since there's a fast native implementation available in Node.
import { serialize, deserialize } from 'jsr:@workers/v8-value-serializer'
const obj = {
num: 3,
date: new Date(),
data: crypto.getRandomValues(new Uint8Array(4)),
dict: new Map([
['foo', 11],
[new Set([1,2,3]), 12],
]),
array: [1, 2, 3, /* hole in array */, 5],
regex: /xyz/g,
error: new Error('xxx', { cause: new TypeError('yyy') })
};
obj.self = obj;
deserialize(serialize(obj));