FracturedJson is a family of utilities that format JSON data in a way that's easy for humans to read, but fairly compact. Arrays and objects are written on single lines, as long as they're neither too long nor too complex. When several such lines are similar in structure, they're written with fields aligned like a table. Long arrays are written with multiple items per line across multiple lines.
This npm
module is part of a family of FracturedJson tools.
- Home page and Browser-based Formatter
- FracturedJsonJs GitHub Page
- FracturedJson GitHub Page
- FracturedJson Wiki
- npm Package
- VS Code Extension
Here's a sample of output using nearly-default settings:
{
"SimpleArray": [
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53,
59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113
],
"ObjectColumnsArrayRows": {
"Katherine": ["blue" , "lightblue", "black" ],
"Logan" : ["yellow" , "blue" , "black", "red"],
"Erik" : ["red" , "purple" ],
"Jean" : ["lightgreen", "yellow" , "black" ]
},
"ArrayColumnsObjectRows": [
{ "type": "turret" , "hp": 400, "loc": {"x": 47, "y": -4}, "flags": "S" },
{ "type": "assassin" , "hp": 80, "loc": {"x": 12, "y": 6}, "flags": "Q" },
{ "type": "berserker", "hp": 150, "loc": {"x": 0, "y": 0} },
{ "type": "pittrap" , "loc": {"x": 10, "y": -14}, "flags": "S,I" }
],
"ComplexArray": [
[19, 2],
[ 3, 8],
[14, 0],
[ 9, 9],
[ 9, 9],
[ 0, 3],
[10, 1],
[ 9, 1],
[ 9, 2],
[ 6, 13],
[18, 5],
[ 4, 11],
[12, 2]
]
}
If enabled in the settings, it can also handle JSON-with-comments (which isn't real JSON).
npm i fracturedjsonjs
import {
Formatter,
FracturedJsonOptions,
CommentPolicy,
EolStyle,
NumberListAlignment,
TableCommaPlacement,
} from 'fracturedjsonjs';
// The constructor below will give default behavior that is consistent across minor version
// changes. But if you don't care about backward compatibility and just want the newest best
// settings whatever they are, use this instead:
// const options = FracturedJsonOptions.Recommended();
const options = new FracturedJsonOptions();
// For examples of the options, see:
// https://github.com/j-brooke/FracturedJson/wiki/Options
// Or experiment interactively with the web formatter:
// https://j-brooke.github.io/FracturedJson/
options.MaxTotalLineLength = 80;
options.MaxInlineComplexity = 1;
options.JsonEolStyle = EolStyle.Crlf;
options.NumberListAlignment = NumberListAlignment.Decimal;
options.TableCommaPlacement = TableCommaPlacement.BeforePadding;
const formatter = new Formatter();
formatter.Options = options;
// Use Serialize to go from JavaScript data to JSON text.
const inputObj = [
{ val: 123.456 },
{ val: 234567.8 },
{ val: 3 },
{ val: null },
{ val: 5.67890123 }
];
const textFromObj = formatter.Serialize(inputObj);
console.log("From inputObj:");
console.log(textFromObj);
// Comments aren't allowed by default, but they're easy to enable.
formatter.Options.CommentPolicy = CommentPolicy.Preserve;
formatter.Options.IndentSpaces = 2;
// Use Reformat to go from JSON text to JSON text.
const inputText = '[{"a":123.456,"b":0,"c":0},{"a":234567.8,"b":0,"c":0},'
+ '{"a":3,"b":0.00000,"c":7e2},{"a":null,"b":2e-1,"c":80e1},{"a":5.6789,"b":3.5e-1,"c":0}]';
const textFromText = formatter.Reformat(inputText);
console.log("From inputText:");
console.log(textFromText);