Guides
CLI Guide
Quick reference for the JSSON command-line interface.
The JSSON CLI transpiles .jsson files to JSON, YAML, TOML, or TypeScript.
Quick Start
# Download and install
curl -L https://github.com/carlosedujs/jsson/releases/latest/download/jsson-linux-amd64 -o jsson
chmod +x jsson && sudo mv jsson /usr/local/bin/
# Transpile to JSON
jsson -i config.jsson > config.json
# Transpile to YAML
jsson -i config.jsson -f yaml > config.yamlCommon Flags
| Flag | Description |
|---|---|
-i | Input file (required) |
-f | Format: json, yaml, toml, typescript |
-schema | Validate against schema |
-stream | Streaming mode for large datasets |
Full Documentation
For complete CLI documentation, see the dedicated CLI section: