json2yaml 0.4.0
See the version list below for details.
dotnet tool install --global json2yaml --version 0.4.0
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local json2yaml --version 0.4.0
#tool dotnet:?package=json2yaml&version=0.4.0
nuke :add-package json2yaml --version 0.4.0
json2yaml
A simple tool to convert json to yaml.
Reads input either from file or http endpoint. Writes converted output to file or console.
Usage
Usage: json2yaml [options]
Options:
-i|--input [Conditionally Required]. Path to json input file. I.e. `-i:file.json` (or `-i="file.json"`). If empty value provided (`-i`), converter will search current directory for json file. Use either thtory for json file. Use either this or -u|--url.
-u|--url [Conditionally Required]. HTTP endpoint to fetch json from. Use either this or -i|--input.
-c|--console-output [Optional]. Specifies if converted yaml should be printed directly to console. (In this case -o option is ignorred.)
-o|--output [Conditionally Optional]. Path to output yaml file. I.e. `-o:file.yaml (or -o="file.yaml")`. Optional only with -i or -c option. If omitted or empty value provided ('-o') converter will output ted ('-o') converter will output to file named like input, but with .yaml extension.
-m|--max-size [Optional]. Specifies size limit for file to be converted. I.e. `-m:10`. If omitted, converter will skip file larger that 20 MB.
-?|-h|--help Show help information
Examples
The simplest use case for local input:
json2yaml -i
This will search current directory for json file. Convert its contents to yaml. And writes output to file named as input file, but with extension .yaml.
For remote input use this:
json2yaml -u:https://localhost:5001/swagger/v1/swagger.json -o:swagger.yaml
Note. For --url
option either --output
or flag --console-output
is required.
To print conversion results directly to console use -c|--console-output
flag:
json2yaml -i:input.json -c
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
6.0.0 | 68 | 11/20/2024 |
5.1.0 | 80 | 11/18/2024 |
5.0.0 | 4,104 | 12/28/2022 |
4.0.0 | 367 | 12/1/2022 |
3.0.1 | 2,656 | 11/28/2021 |
2.2.0 | 410 | 10/9/2021 |
2.1.0 | 533 | 12/20/2020 |
2.0.0 | 555 | 7/9/2020 |
1.3.0 | 572 | 5/31/2020 |
1.2.7 | 527 | 4/18/2020 |
1.2.6 | 531 | 3/6/2020 |
1.2.5 | 598 | 12/23/2019 |
1.2.4 | 528 | 12/23/2019 |
1.2.3 | 551 | 12/21/2019 |
1.2.2 | 550 | 12/18/2019 |
1.2.1 | 540 | 11/9/2019 |
1.2.0 | 540 | 11/9/2019 |
1.1.0 | 585 | 10/21/2019 |
1.0.5 | 696 | 9/9/2019 |
1.0.4 | 674 | 8/10/2019 |
1.0.3 | 642 | 7/7/2019 |
1.0.2 | 585 | 6/13/2019 |
1.0.1 | 608 | 5/18/2019 |
1.0.0 | 609 | 5/15/2019 |
0.4.0 | 928 | 4/6/2019 |
0.3.2 | 805 | 1/20/2019 |
0.3.1 | 698 | 12/17/2018 |
0.3.0 | 771 | 12/9/2018 |
0.2.0 | 702 | 11/24/2018 |
0.1.2-alpha | 621 | 11/14/2018 |
0.1.1-alpha | 549 | 11/8/2018 |
0.1.0-alpha | 575 | 11/6/2018 |
0.4.0:
* -c|--console-output: print output results directly to console
0.3.2:
* fix json2yaml -i throws when run on directory without any *.json file
* fix in message when json size exceeds value provided with --max-size option
0.3.1:
* support array in root
0.3.0:
* -u|--url option to read input from http endpoint
* show tool version
0.2.0:
* -m|--max-size option
0.1.2-alpha:
* cleanup tool output to console
0.1.1-alpha:
* handle gracefully command line parsing errors