A tridirectional converter between Json, Yaml, and Toml which supports both native and WebAssembly
You can install this using the cargo install
command:
bash
$ cargo install jyt
This application also provides a wasm package.
You can install it using wapm
by the following command:
bash
$ wapm install ken-matsui/jyt
```bash $ jyt --help jyt 0.1.0 Ken Matsui <26405363+ken-matsui@users.noreply.github.com> A tridirectional converter between Json, Yaml, and Toml
USAGE:
jyt
OPTIONS: -h, --help Print help information -V, --version Print version information
SUBCOMMANDS:
help Print this message or the help of the given subcommand(s)
json-to-toml Convert Json to Toml (also as json2toml
, j2t
, and jt
)
json-to-yaml Convert Json to Yaml (also as json2yaml
, j2y
, and jy
)
toml-to-json Convert Toml to Json (also as toml2json
, t2j
, and tj
)
toml-to-yaml Convert Toml to Yaml (also as toml2yaml
, t2y
, and ty
)
yaml-to-json Convert Yaml to Json (also as yaml2json
, y2j
, and yj
)
yaml-to-toml Convert Yaml to Toml (also as yaml2toml
, y2t
, and yt
)
```
```bash $ wapm run jyt -- --help jyt 0.1.0 Ken Matsui <26405363+ken-matsui@users.noreply.github.com> A tridirectional converter between Json, Yaml, and Toml
USAGE:
jyt
OPTIONS: -h, --help Print help information -V, --version Print version information
SUBCOMMANDS:
help Print this message or the help of the given subcommand(s)
json-to-toml Convert Json to Toml (also as json2toml
, j2t
, and jt
)
json-to-yaml Convert Json to Yaml (also as json2yaml
, j2y
, and jy
)
toml-to-json Convert Toml to Json (also as toml2json
, t2j
, and tj
)
toml-to-yaml Convert Toml to Yaml (also as toml2yaml
, t2y
, and ty
)
yaml-to-json Convert Yaml to Json (also as yaml2json
, y2j
, and yj
)
yaml-to-toml Convert Yaml to Toml (also as yaml2toml
, y2t
, and yt
)
```
```yaml
title: TOML Example owner: name: Tom Preston-Werner database: server: 192.168.1.1 ports: - 8000 - 8001 - 8002 connection_max: 5000 enabled: true ```
```bash $ cat ./examples/example.json | jyt json2toml title = "TOML Example"
[owner] name = "Tom Preston-Werner"
[database] server = "192.168.1.1" ports = [8000, 8001, 8002] connection_max = 5000 enabled = true ```
json
$ cat ./examples/example.yaml | jyt y2j
{
"title": "TOML Example",
"owner": {
"name": "Tom Preston-Werner"
},
"database": {
"server": "192.168.1.1",
"ports": [
8000,
8001,
8002
],
"connection_max": 5000,
"enabled": true
}
}
```bash $ cat ./examples/example.yaml | jyt yt title = "TOML Example"
[owner] name = "Tom Preston-Werner"
[database] server = "192.168.1.1" ports = [8000, 8001, 8002] connection_max = 5000 enabled = true ```
json
$ cat ./examples/example.toml | jyt tj
{
"title": "TOML Example",
"owner": {
"name": "Tom Preston-Werner"
},
"database": {
"server": "192.168.1.1",
"ports": [
8000,
8001,
8002
],
"connection_max": 5000,
"enabled": true
}
}
```yaml
title: TOML Example owner: name: Tom Preston-Werner database: server: 192.168.1.1 ports: - 8000 - 8001 - 8002 connection_max: 5000 enabled: true ```
```bash $ test "$(cat ./examples/example.toml)" = "$(cat ./examples/example.toml | jyt ty | jyt yj | jyt jt)"
$ echo $? 0 ```
```bash
title: TOML Example owner: name: Tom Preston-Werner database: server: 192.168.1.1 ports: - 8000 - 8001 - 8002 connection_max: 5000 enabled: true ```
... other examples are the same as native provides!
bash
$ cargo build
Or you can directly execute the binary:
bash
$ cargo run
bash
$ rustup target add wasm32-wasi
$ cargo build --target wasm32-wasi
$ wasmer run target/wasm32-wasi/debug/jyt.wasm
This command can also test C API.
bash
$ cargo build
$ cargo test
bash
$ git tag v0.1.0
$ git push origin v0.1.0
bash
$ cargo publish
bash
$ cargo build --release --target wasm32-wasi
$ wapm publish