Which is Better JSON Serialization Libraries?
flatted vs json-stringify-safe vs circular-json

1 Year
flattedjson-stringify-safecircular-jsonSimilar Packages:
What's JSON Serialization Libraries?

JSON serialization libraries provide utilities for handling circular references and special cases when serializing JavaScript objects to JSON format. These libraries help in avoiding common pitfalls and errors that may occur during the serialization process.

NPM Package Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
flatted34,164,2521,00740.3 kB25 months agoISC
json-stringify-safe20,710,570550-79 years agoISC
circular-json1,141,402603-06 years agoMIT
Feature Comparison: flatted vs json-stringify-safe vs circular-json

Handling Circular References

  • flatted: Flatted offers a way to flatten objects with circular references, allowing for serialization without losing references to objects.
  • json-stringify-safe: Json-stringify-safe ensures safe serialization of objects with circular references, preventing stack overflow errors and maintaining object integrity.
  • circular-json: Circular-json provides a solution for serializing objects with circular references by maintaining references to objects and correctly handling circular dependencies.

Lightweight and Performance

  • flatted: Flatted is designed to be lightweight and efficient, making it a good choice for scenarios where performance is a priority.
  • json-stringify-safe: Json-stringify-safe focuses on providing a balance between performance and safety, ensuring efficient serialization without sacrificing reliability.
  • circular-json: Circular-json may have slightly more overhead due to its handling of circular references, which can impact performance for large objects.

Error Handling

  • flatted: Flatted offers error handling features to address issues that may arise during the flattening and unflattening process.
  • json-stringify-safe: Json-stringify-safe prioritizes error prevention by ensuring safe serialization of objects, reducing the likelihood of unexpected errors.
  • circular-json: Circular-json includes error handling mechanisms to deal with circular references and prevent serialization errors.

Compatibility

  • flatted: Flatted is designed to work seamlessly in different environments, offering compatibility for a wide range of JavaScript projects.
  • json-stringify-safe: Json-stringify-safe is compatible with most JavaScript environments, providing a reliable solution for serialization needs across different platforms.
  • circular-json: Circular-json is compatible with various JavaScript environments and can be used in both Node.js and browser applications.

Customization Options

  • flatted: Flatted offers customization features for controlling how objects are flattened and unflattened, giving developers flexibility in serialization.
  • json-stringify-safe: Json-stringify-safe includes customization options to tailor the serialization behavior to specific requirements, enhancing control over the process.
  • circular-json: Circular-json provides options for customizing the serialization process, allowing developers to fine-tune the handling of circular references.
How to Choose: flatted vs json-stringify-safe vs circular-json
  • flatted: Choose flatted if you are looking for a lightweight library that focuses on flattening and unflattening objects without losing references.
  • json-stringify-safe: Choose json-stringify-safe if you want a library that ensures safe serialization of objects, preventing potential errors and issues during the process.
  • circular-json: Choose circular-json if you need to serialize objects with circular references and want a library that can handle them seamlessly.
Similar Npm Packages to flatted

flatted is a library that provides a way to serialize JavaScript objects with circular references to JSON. It allows you to stringify and parse objects that contain circular structures, which are not supported by the standard JSON.stringify method. This can be useful when working with complex data structures in JavaScript.

While flatted offers a solution for handling circular references in JSON serialization, there are other libraries in the npm ecosystem that provide similar functionality. Here are a couple of alternatives:

  • circular-json is a library that also enables serialization and deserialization of JavaScript objects with circular references. It provides a way to stringify and parse objects with circular structures in a JSON-friendly format.
  • json-stringify-safe is another library that addresses the issue of circular references when serializing objects to JSON. It ensures that circular references are handled properly during the stringification process.

For a comparison of circular-json, flatted, and json-stringify-safe, you can check out this comparison: Comparing circular-json vs flatted vs json-stringify-safe.

README for flatted

flatted

Downloads Coverage Status Build Status License: ISC WebReflection status

snow flake

Social Media Photo by Matt Seymour on Unsplash

A super light (0.5K) and fast circular JSON parser, directly from the creator of CircularJSON.

Available also for PHP.

Available also for Python.


Announcement 📣

There is a standard approach to recursion and more data-types than what JSON allows, and it's part of the Structured Clone polyfill.

Beside acting as a polyfill, its @ungap/structured-clone/json export provides both stringify and parse, and it's been tested for being faster than flatted, but its produced output is also smaller than flatted in general.

The @ungap/structured-clone module is, in short, a drop in replacement for flatted, but it's not compatible with flatted specialized syntax.

However, if recursion, as well as more data-types, are what you are after, or interesting for your projects/use cases, consider switching to this new module whenever you can 👍


npm i flatted

Usable via CDN or as regular module.

// ESM
import {parse, stringify, toJSON, fromJSON} from 'flatted';

// CJS
const {parse, stringify, toJSON, fromJSON} = require('flatted');

const a = [{}];
a[0].a = a;
a.push(a);

stringify(a); // [["1","0"],{"a":"0"}]

toJSON and fromJSON

If you'd like to implicitly survive JSON serialization, these two helpers helps:

import {toJSON, fromJSON} from 'flatted';

class RecursiveMap extends Map {
  static fromJSON(any) {
    return new this(fromJSON(any));
  }
  toJSON() {
    return toJSON([...this.entries()]);
  }
}

const recursive = new RecursiveMap;
const same = {};
same.same = same;
recursive.set('same', same);

const asString = JSON.stringify(recursive);
const asMap = RecursiveMap.fromJSON(JSON.parse(asString));
asMap.get('same') === asMap.get('same').same;
// true

Flatted VS JSON

As it is for every other specialized format capable of serializing and deserializing circular data, you should never JSON.parse(Flatted.stringify(data)), and you should never Flatted.parse(JSON.stringify(data)).

The only way this could work is to Flatted.parse(Flatted.stringify(data)), as it is also for CircularJSON or any other, otherwise there's no granted data integrity.

Also please note this project serializes and deserializes only data compatible with JSON, so that sockets, or anything else with internal classes different from those allowed by JSON standard, won't be serialized and unserialized as expected.

New in V1: Exact same JSON API

  • Added a reviver parameter to .parse(string, reviver) and revive your own objects.
  • Added a replacer and a space parameter to .stringify(object, replacer, space) for feature parity with JSON signature.

Compatibility

All ECMAScript engines compatible with Map, Set, Object.keys, and Array.prototype.reduce will work, even if polyfilled.

How does it work ?

While stringifying, all Objects, including Arrays, and strings, are flattened out and replaced as unique index. *

Once parsed, all indexes will be replaced through the flattened collection.

* represented as string to avoid conflicts with numbers

// logic example
var a = [{one: 1}, {two: '2'}];
a[0].a = a;
// a is the main object, will be at index '0'
// {one: 1} is the second object, index '1'
// {two: '2'} the third, in '2', and it has a string
// which will be found at index '3'

Flatted.stringify(a);
// [["1","2"],{"one":1,"a":"0"},{"two":"3"},"2"]
// a[one,two]    {one: 1, a}    {two: '2'}  '2'