
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
Progressive JSON
danSON is a progressive JSON serializer and deserializer that can serialize and deserialize arbitrary objects into JSON.
Promises, AsyncIterables, and ReadableStreamsnpm 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:
BigIntDateHeadersMap-0, Infinity, -Infinity)RegExpSetInt8Array, Uint8Array, etc.)undefinedURLURLSearchParamsimport { 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,
},
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),
},
});
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,
},
});
Promisesconst 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);
}
{
"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"
}
]
AsyncIterablesconst 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"
}
]
stringifySync(value: unknown, options?: StringifyOptions): stringSerializes a value into a JSON string.
parseSync<T>(value: string, options?: ParseOptions): TDeserializes a JSON string into a value.
serializeSync(value: unknown, options?: StringifyOptions): SerializeReturnSerializes a value into a JSON.stringify-compatible format.
deserializeSync<T>(value: SerializeReturn, options?: ParseOptions): TDeserializes 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.
FAQs
Danson
We found that danson demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.