Package Exports
- fast-stringify
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fast-stringify) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
fast-stringify
A tiny, blazing fast stringifier that safely handles circular objects
Table of contents
Summary
The fastest way to stringify an object will always be the native JSON.stringify
, but it does not support circular objects out of the box. If you need to stringify objects that have circular references, fast-stringify
is there for you! It maintains a very similar API to the native JSON.stringify
, and aims to be the most performant stringifier that handles circular references.
Usage
import stringify from 'fast-stringify';
const object = {
foo: 'bar',
deeply: {
recursive: {
object: {},
},
},
};
object.deeply.recursive.object = object.deeply.recursive;
console.log(stringify(object));
// {"foo":"bar","deeply":{"recursive":{"object":"[ref=.deeply.recursive]"}}}
stringify
type StandardReplacer = (key: string, value: any) => any;
type CircularReplacer = (key: string, value: any, referenceKey: string) => any;
function stringify(
value: any,
replacer?: StandardReplacer,
indent?: number,
circularReplacer: CircularReplacer,
): string;
Stringifies the object passed based on the parameters you pass. The only required value is the object
. The additional parameters passed will customize how the string is compiled.
value
=> the value to stringifyreplacer
=> function to customize how the non-circular value is stringified (see the documentation for JSON.stringify for more details)indent
=> number of spaces to indent the stringified object for pretty-printing (see the documentation for JSON.stringify for more details)circularReplacer
=> function to customize how the circular value is stringified (defaults to[ref=##]
where##
is thereferenceKey
)referenceKey
is a dot-separated key list reflecting the nested key the object was originally declared at
Importing
// ESM in browsers
import stringify from 'fast-stringify';
// ESM in NodeJS
import stringify from 'fast-stringify/mjs';
// CommonJS
const stringify = require('fast-stringify');
Benchmarks
Simple objects
Small number of properties, all values are primitives
Operations / second | Relative margin of error | |
---|---|---|
fast-stringify | 598,072 | 0.59% |
fast-json-stable-stringify | 339,082 | 0.86% |
json-stringify-safe | 333,447 | 0.46% |
json-stable-stringify | 255,619 | 0.71% |
json-cycle | 194,553 | 0.60% |
decircularize | 141,821 | 1.35% |
Complex objects
Large number of properties, values are a combination of primitives and complex objects
Operations / second | Relative margin of error | |
---|---|---|
fast-stringify | 97,559 | 0.32% |
json-stringify-safe | 59,948 | 0.44% |
fast-json-stable-stringify | 57,656 | 1.14% |
json-cycle | 51,892 | 0.59% |
json-stable-stringify | 39,180 | 1.01% |
decircularize | 27,047 | 0.84% |
Circular objects
Objects that deeply reference themselves
Operations / second | Relative margin of error | |
---|---|---|
fast-stringify | 87,030 | 0.51% |
json-stringify-safe | 56,329 | 0.49% |
json-cycle | 48,116 | 0.77% |
decircularize | 25,240 | 0.68% |
fast-json-stable-stringify (not supported) | 0 | 0.00% |
json-stable-stringify (not supported) | 0 | 0.00% |
Special objects
Custom constructors, React components, etc
Operations / second | Relative margin of error | |
---|---|---|
fast-stringify | 24,250 | 0.38% |
json-stringify-safe | 19,526 | 0.52% |
json-cycle | 18,433 | 0.74% |
fast-json-stable-stringify | 18,202 | 0.73% |
json-stable-stringify | 13,041 | 0.87% |
decircularize | 9,175 | 0.82% |
Development
Standard practice, clone the repo and npm i
to get the dependencies. The following npm scripts are available:
benchmark
=> run benchmark tests against other equality librariesbuild
=> build dist files withrollup
clean
=> runclean:dist
andclean:mjs
scriptsclean:dist
=> runrimraf
on thedist
folderclean:mjs
=> runrimraf
on themjs
foldercopy:mjs
=> copy and transform the ESM file generated bydist
to be consumable as an.mjs
filedev
=> start webpack playground Appdist
=> runclean
,build
, andcopy:mjs
scriptslint
=> run ESLint on all files insrc
folder (also runs ondev
script)lint:fix
=> runlint
script, but with auto-fixerprepublishOnly
=> runlint
,typecheck
,test:coverage
, anddist
scriptsrelease
=> runrelease-it
for standard versions (expected to be installed globally)release:beta
=> runrelease-it
for beta versions (expected to be installed globally)start
=> rundev
test
=> run Jest with NODE_ENV=test on all files in__tests__
foldertest:coverage
=> run same script astest
with code coverage calculationtest:watch
=> run same script astest
but keep persistent watchertypecheck
=> run TypeScript types validation