jsonabc icon indicating copy to clipboard operation
jsonabc copied to clipboard

Sorts JSON object alphabetically. It supports nested objects, arrays and collections. Works offline and beautifies JSON object too.

Results 6 jsonabc issues
Sort by recently updated
recently updated
newest added

I downloaded everything so I could run it locally, but I'm getting an "Incorrect JSON Object" on the below JSON (running it online works just fine). Any suggestions would be...

Suggestion! Support using `jsonabc` as a command line tool, such as via `npx`. Example usage: ```sh $ echo '{ "c": 0, "b": 1, "a": 0 }' | npx jsonabc {...

The package `xxx\jsonabc\package.json` was successfully found. However, this package itself specifies a `main` module field that could not be resolved (`xxx\node_modules\jsonabc\dist\jsonabc.js`. Indeed, none of these files exist: `xxx\jsonabc\dist\jsonabc.js(.native||.android.js|.native.js|.js|.android.json|.native.json|.json|.android.ts|.native.ts|.ts|.android.tsx|.native.tsx|.tsx)` Error in...

The code base sorts array of numbers as array of text. Input : { "a": [ 3,4,22,33,99 ] } Output : { "a": [ 22, 3, 33, 4, 99 ]...

I love this extension! But I noticed that `jsonAbc.sortObj` removes comments from JSON5 files. Would it be possible to keep these during sorting? **Input:** ```json5 { // XYZ "xyz": "xyz",...