danson
v0.13.0
Published
Danson
Readme
About
danSON is a progressive JSON serializer and deserializer that can serialize and deserialize arbitrary objects into JSON.
Features
- Streaming of
Promises,AsyncIterables, andReadableStreams - Custom serializers / deserializers
- De-duplication of objects (optional)
- Circular references
- Serializable errors
- Human-readable JSON output
- Built-in serializers for common JavaScript types
Installation
npm install dansonUsage
Synchronous Usage
import { parseSync, stringifySync } from "danson";
const data = {
foo: "bar",
};
const stringified = stringifySync(data);
const parsed = parseSync(stringified);
console.log(parsed); // { foo: "bar" }Asynchronous Usage
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"Built-in Serializers
The std module provides built-in serializers for common JavaScript types that works with both synchronous and asynchronous usage.
Supported types:
BigIntDateHeadersMap- Special numbers (
-0,Infinity,-Infinity,NaN) RegExpSet- TypedArrays (
Int8Array,Uint8Array, etc.) undefinedURLURLSearchParams
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
},
});Custom Serialization
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),
},
});TransformerPair<TOriginal, TSerialized>
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,
},
});Example outputs
Streaming Promises
Promise example input
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);
}Promise example output
{
"json": {
"foo": "bar",
"promise": {
"_": "$", // informs the deserializer that this is a special type
"type": "Promise", // it is a Promise
"value": 1, // index of the Promise that will come later
}
}
}[
1, // index of the Promise
0, // Promise succeeded (0 = success, 1 = failure)
{
"json": "hello promise"
}
]Streaming AsyncIterables
AsyncIterable example input
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);
}AsyncIterable example output
{
"json": {
"foo": "bar",
"asyncIterable": {
"_": "$",
"type": "AsyncIterable",
"value": 0
}
}
}[
0,
0,
{
"json": "world"
}
][
0, // index of the AsyncIterable
2,
{
"json": "done"
}
]API Reference
stringifySync(value: unknown, options?: StringifyOptions): string
Serializes a value into a JSON string.
parseSync<T>(value: string, options?: ParseOptions): T
Deserializes a JSON string into a value.
serializeSync(value: unknown, options?: StringifyOptions): SerializeReturn
Serializes a value into a JSON.stringify-compatible format.
deserializeSync<T>(value: SerializeReturn, options?: ParseOptions): T
Deserializes from a SerializeReturn object into a value.
stringifyAsync(value: unknown, options?: StringifyOptions): AsyncIterable<string, void>
Serializes a value into a stream of JSON strings asynchronously.
parseAsync<T>(value: AsyncIterable<string, void>, options?: ParseOptions): Promise<T>
Deserializes a stream of JSON strings into a value asynchronously.
serializeAsync(value: unknown, options?: StringifyOptions): AsyncIterable<unknown, void>
Serializes a value into a stream of intermediate objects asynchronously.
deserializeAsync<T>(value: AsyncIterable<unknown, void>, options?: ParseOptions): Promise<T>
Deserializes a stream of intermediate objects into a value asynchronously.
