Skip to content

Exponential-Workload/recjson

Repository files navigation

RecJSON 🔄🔢

📝 Documentation 📦 NPM 🧪 Tests

🔄 JSON-based serialization with the ability to have circular/infinitely-recursive references 🔗

📦 Table of Contents

🚀 Setup

pnpm i recjson

🛠️ Usage

📤 Serialization

import { Serializer } from 'recjson';
const serializer = new Serializer();

const recursiveObject = {
  a: 1,
  b: {
    c: {
      d: {
        backToTop: null as unknown as any,
      },
    },
  },
};

recursiveObject.b.c.d.backToTop = recursiveObject;

const serialized = serializer.serialize(recursiveObject);
// { root: 0, obj: [ { a: 1, b: 2 }, 1, { c: 3 }, { d: 4 }, { backToTop: 0 } ] } - As a JS Object

const serializedAsString = serializer.serializeToJSON(recursiveObject);
// '{"root":0,"obj":[{"a":1,"b":2},1,{"c":3},{"d":4},{"backToTop":0}]}'

📥 Deserialization/Parsing

import { Deserializer } from 'recjson';
const deserializer = new Deserializer();

const serialized = { root: 0, obj: [ { a: 1, b: 2 }, 1, { c: 3 }, { d: 4 }, { backToTop: 0 } ] }; // As a JS Object

const deserialized = deserializer.parse(serialized); // { a: 1, b: { c: { d: [Circular] } } }

const deserializedAsString = parser.parseFromJSON('{"root":0,"obj":[{"a":1,"b":2},1,{"c":3},{"d":4},{"backToTop":0}]}'); // { a: 1, b: { c: { d: [Circular] } } }

🧙‍♂️🔮 What kind of sorcery is this?

🔄📝 RecJSON is a JSON-based serialization format that allows for circular/infinitely-recursive references. It does this by using a special syntax for references.

🔢🔄 This syntax involves using an array of all objects, each with integer values, alongside primitives. When an object is referenced, it is replaced with the integer value of its index in the array. If it doesn't exist, it is added to the array.

🔄🔄 This allows for circular/infinitely-recursive references, as the object is only referenced by its index in the array, not by the object itself.

🔄📥 When deserializing, the array is used to replace the integer values with the actual objects.

📜 License

This project is licensed under the 📄 MIT License

About

Recursive JSON Structures flattened

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published