https://github.com/rgolangh/y2j
y2j - dead simple yaml to json converter
https://github.com/rgolangh/y2j
Last synced: 3 months ago
JSON representation
y2j - dead simple yaml to json converter
- Host: GitHub
- URL: https://github.com/rgolangh/y2j
- Owner: rgolangh
- License: apache-2.0
- Created: 2023-02-05T14:34:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-06T18:49:01.000Z (over 2 years ago)
- Last Synced: 2024-12-28T02:29:50.306Z (5 months ago)
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: license
Awesome Lists containing this project
README
y2j - dead simple yaml to json converter
----------------------------------------Usage:
~~~~~
[source, bash]
$ echo "valid: yaml" | y2j
{"valid":"yaml"}Build and store under you favorite path:
[source, bash]
$ go build -o y2j
$ cp y2j $PATH
# Alternatively, your go path if its included in $PATH already:
$ go install .