Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ikegee/json-console-table-c
Console table generator for JSON data structures using cJSON
https://github.com/ikegee/json-console-table-c
ansi-c c c-language cjson console json json-data json-parser json-reader table-generator
Last synced: 30 days ago
JSON representation
Console table generator for JSON data structures using cJSON
- Host: GitHub
- URL: https://github.com/ikegee/json-console-table-c
- Owner: ikegee
- License: mit
- Created: 2024-11-19T09:05:47.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-20T07:38:53.000Z (about 1 month ago)
- Last Synced: 2024-11-20T08:38:03.744Z (about 1 month ago)
- Topics: ansi-c, c, c-language, cjson, console, json, json-data, json-parser, json-reader, table-generator
- Language: C
- Homepage:
- Size: 159 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ANSI C table formatter plugin for cJSON - transforms JSON arrays into formatted console tables
A lightweight C utility that generates formatted console tables and tree views from JSON data structures. Built on top of the cJSON library, this tool provides clean and organized visualization of JSON data directly in the terminal.
## Example
Input JSON ([`json_example.json`](json_example.json)):
```json
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:\\MinGW-w64\\bin\\gcc.exe",
"cStandard": "c17",
"cppStandard": "gnu++14",
"intelliSenseMode": "windows-gcc-x64"
}
],
"version": 4
}
```
## Building
- bash
- gcc -o json_table json_print_table.c cJSON.c -I. ./json_table [path_to_json_file]
- gcc -o json_tree json_print_tree.c cJSON.c -I. ./json_tree [path_to_json_file]- Please see [`json_print_example.txt`](json_print_example.txt)
- **Two Display Modes**:
- Table View (`json_print_table.c`): Displays JSON arrays as formatted tables
- ![json_print_table](screenshots/json_print_table.png)
- Tree View (`json_print_tree.c`): Shows hierarchical JSON structure
- ![json_print_tree](screenshots/json_print_tree.png)- **Table View Features**:
- Dynamic column width adjustment
- Smart data type formatting (currency, numbers, text)
- Row count limits for large datasets
- Truncation of long text fields
- Column filters and formatting rules
- Nested objects display as [obj]
- **Tree View Features**:
- Visual hierarchy with indentation
- Type indicators (Array, Object, String, Number)
- Clear parent-child relationship display
- Full depth visualization
## Requirements
- C compiler (gcc recommended)
- cJSON library (included)
- Standard C libraries## Limitations
- Nested JSON structures `(nested objects display as [obj] in tables - use tree view for full depth visualization)`## License
- This project is licensed under the MIT License. See the LICENSE file for details.
- cJSON library is Copyright (c) 2009-2017 Dave Gamble and cJSON contributors.