Progressive JSON
danSON is a progressive JSON serializer and deserializer that can serialize and deserialize arbitrary objects into JSON.
- Streaming of
Promise
s,AsyncIterable
s, andReadableStream
s - Custom serializers / deserializers
- De-duplication of objects (optional)
- Circular references
- Serializable errors
- Human-readable JSON output
- Built-in serializers for common JavaScript types
npm install danson
import { parseSync, stringifySync } from "danson";
const data = {
foo: "bar",
};
const stringified = stringifySync(data);
const parsed = parseSync(stringified);
console.log(parsed); // { foo: "bar" }
import { parseAsync, stringifyAsync } from "danson";
const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
const data = {
promise: (async () => {
await sleep(1000);
return "hello promise";
})(),
};
const iterable = stringifyAsync(data);
const parsed = await parseAsync(iterable);
// ^? { promise: Promise<string> }
console.log(await parsed.promise); // "hello promise"
The std
module provides built-in serializers for common JavaScript types that works with both synchronous and asynchronous usage.
Supported types:
BigInt
Date
Headers
Map
- Special numbers (
-0
,Infinity
,-Infinity
,NaN
) RegExp
Set
- TypedArrays (
Int8Array
,Uint8Array
, etc.) undefined
URL
URLSearchParams
import { parseSync, std, stringifySync } from "danson";
// Using built-in serializers
const data = {
date: new Date(),
headers: new Headers({
"Content-Type": "application/json",
}),
map: new Map([["key", "value"]]),
numbers: {
bigint: 123n,
infinity: Infinity,
negativeInfinity: -Infinity,
negativeZero: -0,
notANumber: NaN,
},
regexp: /foo/g,
set: new Set([1, 2, 3]),
typedArray: new Int8Array([1, 2, 3]),
undef: undefined,
url: new URL("https://example.com"),
urlSearchParams: new URLSearchParams("foo=bar"),
};
const stringified = stringifySync(data, {
serializers: {
...std.serializers,
// ... your custom serializers
},
space: 2,
});
const parsed = parseSync(stringified, {
deserializers: {
...std.deserializers,
// ... your custom deserializers
},
});
You can provide custom serializers for your own types.
import { Temporal } from "@js-temporal/polyfill";
import { std } from "danson";
const stringified = stringifySync(value, {
serializers: {
...std.serializers, // use the built-in serializers (optional)
"Temporal.Instant": (value) =>
value instanceof Temporal.Instant ? value.toJSON() : false,
},
});
const parsed = parseSync(stringified, {
deserializers: {
...std.deserializers, // use the built-in deserializers (optional)
"Temporal.Instant": (value) => Temporal.Instant.from(value as string),
},
});
Type utility for defining serializer/deserializer pairs.
Used internally but can be useful for type-safe custom serializers.
import { Temporal } from "@js-temporal/polyfill";
import { TransformerPair } from "danson";
// Define a type-safe transformer pair for Temporal.Instant
type TemporalNow = TransformerPair<Temporal.Instant, string>;
const serializeTemporalNow: TemporalNow["serialize"] = (value) => {
if (value instanceof Temporal.Instant) {
return value.toJSON();
}
return false;
};
const deserializeTemporalNow: TemporalNow["deserialize"] = (value) => {
return Temporal.Instant.from(value);
};
// Use the transformer pair
const source = {
instant: Temporal.Now.instant(),
};
const stringified = stringifySync(source, {
serializers: {
"Temporal.Instant": serializeTemporalNow,
},
});
const result = parseSync(stringified, {
deserializers: {
"Temporal.Instant": deserializeTemporalNow,
},
});
const source = {
foo: "bar",
promise: (async () => {
await sleep(1000);
return "hello promise";
})(),
};
const stringified = stringifySync(source, {
space: 2,
});
for await (const chunk of stringified) {
console.log(chunk);
}
[
1, // index of the Promise
0, // Promise succeeded (0 = success, 1 = failure)
{
"json": "hello promise"
}
]
const source = {
asyncIterable: (async function* () {
yield "hello";
yield "world";
return "done";
})(),
};
const stringified = stringifySync(source, {
space: 2,
});
for await (const chunk of stringified) {
console.log(chunk);
}
{
"json": {
"foo": "bar",
"asyncIterable": {
"_": "$",
"type": "AsyncIterable",
"value": 0
}
}
}
[
0,
0,
{
"json": "world"
}
]
[
0, // index of the AsyncIterable
2,
{
"json": "done"
}
]
Serializes a value into a JSON string.
Deserializes a JSON string into a value.
Serializes a value into a JSON.stringify
-compatible format.
Deserializes from a SerializeReturn
object into a value.
Serializes a value into a stream of JSON strings asynchronously.
Deserializes a stream of JSON strings into a value asynchronously.
Serializes a value into a stream of intermediate objects asynchronously.
Deserializes a stream of intermediate objects into a value asynchronously.