JS Open Serialization Scheme (JOSS)
Serialize JavaScript data in an open binary format to seamlessly exchange structured data between JavaScript runtime environments. Compatible with browsers, Deno, and Node.
- Serializes almost every intrinsic JavaScript data type and data structure, including those not native to JSON, such as ArrayBuffer, BigInt, Date, Map, RegExp, Set, and TypedArray.
- Serializes primitive wrapper objects, sparse arrays, signed zeros, and circular references.
- Supports serializing to readable streams.
Note
In view of IE11 reaching its end of life, Node supporting the Web Streams API, and Deno leveraging the Request and Response objects in its HTTP Server API, we will release only an ES module in future versions of JOSS. The CommonJS module and IIFE version can always be found in release 1.0.3.
Downloads
Type | Environment | Filename |
---|---|---|
ES module | Browsers, Deno, Node | joss.min.js |
ES module (mjs extension) | Node | joss.min.mjs |
CommonJS module | Node | joss.node.min.js |
Immediately Invoked Function Expression | Old browsers | joss.iife.min.js |
This project is licensed under the MIT License.
Methods
Use the serialize
and deserialize
methods for serializations in the form of static data.
Use the serializable
and deserializable
methods for serializations in the form of readable streams.
Use the deserializing
method for an alternative way to deserialize readable streams.
serialize(data, [options])
- data
<any>
The data to be serialized. - options
<Object>
An optional object that includes the following properties:- endian
<string>
The endianness of TypedArrays in the serialization. Accepted values are"LE"
for little-endian and"BE"
for big-endian. If the source and target machines have different endianness, setting this property to the endianness of the slower machine ensures that the swapping of byte orderings happens on the faster machine. Defaults to the endianness of the source machine.
- endian
- Returns
<Uint8Array>
The serialized bytes.
deserialize(bytes)
- bytes
<Uint8Array>
The serialized bytes. - Returns
<any>
The deserialized data.
serializable(data, [options])
- data
<any>
The data to be serialized. - options
<Object>
See the options parameter forserialize
. - Returns
<ReadableStream>
A readable stream from which the serialized bytes can be read.
deserializable([options])
- options
<Object>
An optional object that includes the following properties:- maxlength
<number>
The maximum acceptable length of the serialized bytes. Must be a positive integer. Defaults to 1GB.
- maxlength
- Returns
<WritableStream>
A writable stream to which the serialized bytes can be written. After the writing process has completed successfully, the deserialized data can be accessed from the customresult
property.
deserializing(readable, [options])
- readable
<ReadableStream>
|<AsyncIterable>
A readable stream or async iterable object from which the serialized bytes can be read. - options
<Object>
See the options parameter fordeserializable
. - Returns
<Promise>
A promise that resolves to the deserialized data.
Examples
Fetch API
The following is an example of a HTTP request made using the Fetch API
from a browser.
The example covers all 5 serialization and deserialization methods.
import * as JOSS from "/path/to/joss.min.js";
const data = { foo : { bar: "baz" } };
const options = { method: "POST", headers: { "Content-Type": "application/octet-stream" } };
if (new Request("", {method: "POST", body: new ReadableStream()}).headers.has("Content-Type")) {
options.body = JOSS.serialize(data); // Call serialize
} else {
options.body = JOSS.serializable(data); // Call serializable
}
fetch("/path/to/resource", options).then(async function(response) {
if (response.body === undefined) {
const buffer = await response.arrayBuffer();
const bytes = new Uint8Array(buffer);
const data = JOSS.deserialize(bytes); // Call deserialize
} else if (response.body.pipeTo === undefined) {
const data = await JOSS.deserializing(response.body); // Call deserializing
} else {
const writable = JOSS.deserializable(); // Call deserializable
await response.body.pipeTo(writable);
const data = writable.result;
}
});
The option to assign a ReadableStream
to the body of a Fetch
request is available only in Chromium-based browsers at the time of writing.
It can be enabled by navigating to chrome://flags
and activating the enable-experimental-web-platform-features
flag.
Please see this page for more information about request streams.
Deno HTTP Server
The following is an example of a HTTP server in Deno (tested in v1.23.2).
Incoming data is deserialized using the deserializing
method.
Outgoing data is serialized using the serializable
method.
import { serializable, deserializing } from "/path/to/joss.min.js";
import { serve } from "https://deno.land/std@0.146.0/http/server.ts";
serve(async function(request) {
let data = await deserializing(request.body); // Call deserializing
// ...
return new Response(serializable(data)); // Call serializable
}, { hostname: "127.0.0.1", port: 8080 });
Node HTTP Server
The following is an example of a HTTP server in Node (tested in v18.4.0).
Incoming data is deserialized using the deserializing
method.
Outgoing data is serialized using the serializable
method.
import { serializable, deserializing } from "/path/to/joss.min.mjs";
import { createServer } from "node:http";
createServer(async function(request, response) {
let data = await deserializing(request); // Call deserializing
// ...
const readable = serializable(data); // Call serializable
for await (const chunk of readable) {
response.write(chunk);
}
response.end();
}).listen(8080, "127.0.0.1");
Supported Types
The serialization format supports the following data types and data structures:
null
undefined
Boolean
(including primitive wrapper object)BigInt
(including primitive wrapper object)Number
(including primitive wrapper object,Infinity
,-Infinity
,NaN
, and-0
)String
(including primitive wrapper object)ArrayBuffer
SharedArrayBuffer
TypedArray
(includingBigInt64Array
andBigUint46Array
)DataView
Array
(dense and sparse)Object
Map
Set
Date
RegExp
- Object references
- Custom objects
Please see the official specification for details.