Jsson Docs
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.yaml

Common Flags

FlagDescription
-iInput file (required)
-fFormat: json, yaml, toml, typescript
-schemaValidate against schema
-streamStreaming mode for large datasets

Full Documentation

For complete CLI documentation, see the dedicated CLI section:

On this page