A simple VS Code extension that aims to ease readability for developers when dealing with large JSON files. It reduces the JSON to a minimal size so they can focus on the schema and avoid infinite scrolling when having extremely large number of array objects or huge texts.
Text is reduced to a configurable number of characters. Array items are reduced to a configurable number of items.
{
"someText": "Lorem Ipsum dolor sit amet consectetur adipisicing elit. Quisquam, quos...",
"someArray": [
{
"someObject": {
"someText": "Lorem Ipsum dolor sit amet"
},
"someObject2": {
"someText": "Lorem Ipsum dolor sit amet"
}
},
"<135 more items>"
]
}{
"jsonReduce.textLength": 100,
"jsonReduce.arrayLength": 10
}- Fork the repository
- Create a new branch
- Make your changes
- Run the tests
- Submit a pull request
MIT © Ang3lkar