20 releases (10 stable)

1.2.3 Jan 2, 2023
1.2.2 Jul 1, 2022
1.2.0 Jan 3, 2022
1.1.35 Dec 10, 2021
0.6.0 Dec 19, 2018

#596 in Command line utilities

Download history 14/week @ 2024-02-05 1/week @ 2024-02-12 49/week @ 2024-02-19 23/week @ 2024-02-26 13/week @ 2024-03-04 19/week @ 2024-03-11 9/week @ 2024-03-18 8/week @ 2024-03-25 154/week @ 2024-04-01

192 downloads per month

Apache-2.0

15KB
157 lines

YJ - YAML to JSON

Build Status

Simple command line tool to convert a YAML input file into a JSON output file.

How to, etc.

Built in help

% yj --help
Command line tool that converts YAML to JSON

Usage: yj [OPTIONS] [INPUT]

Arguments:
  [INPUT]  Input YAML file name. Defaults to stdin

Options:
  -c, --compact          Use compact formatting for the JSON output
  -y, --yaml             Format the output as YAML instead of JSON
  -j, --json             Parse the input as JSON. For most use cases, this
                         option makes no difference. Valid JSON is valid
                         YAML, so JSON input will (should?) parse
                         correctly even when being handled with the YAML
                         parser. Use this option when you want failure
                         (instead of weird results) when the input is
                         invalid JSON
  -o, --output <OUTPUT>  Output file name for the JSON. Defaults to stdout
  -h, --help             Print help information
  -V, --version          Print version information

Installing

Local build and install with cargo:

$ cargo install yj

Prebuilt binaries are available on Github releases for some common platforms.

On macOS, the prebuilt binary can be installed using Homebrew. Unfortunately, Homebrew picked up a different utility with the name yj after I chose that name here. So, a simple brew install yj gets that tool, not this one 😞.

$ brew tap bruceadams/utilities
$ brew install bruceadams/utilities/yj

Alternatively on macOS, you may also install yj using MacPorts:

$ sudo port selfupdate
$ sudo port install yj

Minimal Docker images are available on Docker Hub:

$ docker pull bruceadams/yj

Example runs

$ cat .travis.yml
language: rust
os:
  - linux
  - osx
  - windows
rust:
  - stable
  - beta
  - nightly
matrix:
  allow_failures:
    - rust: nightly
  fast_finish: true
$ yj .travis.yml
{
  "language": "rust",
  "os": [
    "linux",
    "osx",
    "windows"
  ],
  "rust": [
    "stable",
    "beta",
    "nightly"
  ],
  "matrix": {
    "allow_failures": [
      {
        "rust": "nightly"
      }
    ],
    "fast_finish": true
  }
}
$ echo pi: 3.1415926 | yj
{
  "pi": 3.1415926
}
$ echo pi: 3.1415926 | yj -c
{"pi":3.1415926}$

Build

Build it your self with Rust 2018, which needs a recent installation of Rust. Get Rust installed from https://rustup.rs/.

cargo build

Dependencies

~6–16MB
~216K SLoC