An open API service indexing awesome lists of open source software.

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

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 .