Skip to content
/ y2j2y Public

yaml to json / json to yaml converter y(*^J^*)y

License

Notifications You must be signed in to change notification settings

morikuni/y2j2y

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

y2j2y

Build Status

yaml to json / json to yaml converter.

Install

Download from release page.

Example

$ cat yaml.yaml
yaml:
  hello: world
  array:
    - 1
    - 2
    - 3
    
$ cat yaml.yaml | yaml2json
{"yaml":{"hello":"world","array":[1,2,3]}}

% cat yaml.yaml | yaml2json | json2yaml
yaml:
  array:
  - 1
  - 2
  - 3
  hello: world