@appscode/json2yaml

Javascript JSON to YAML converter

Usage no npm install needed!

<script type="module">
  import appscodeJson2yaml from 'https://cdn.skypack.dev/@appscode/json2yaml';
</script>

README

json2yaml

Converts json or simple javascript objects into a yaml format.

Installation

Include json2yaml.js (in src directory) via script tag and then run:

var obj  = { hello: 'world', hello2: [ 'hello', 'world' ] };
var yaml = json2yaml(obj);
console.log(yaml);

This outputs

hello: world
hello2:
  - hello
  - world

Acknowledgement

For string conversion, we're using yaml.js's Escaper and Pattern.