♻️ json-to-pretty-yaml
A node module to convert JSON to pretty YAML
Installation
npm install --save json-to-pretty-yaml
Usage
index.js
const fs = ;const YAML = ;const json = ; const data = YAML;fs;
input.json
output.yaml
a: 1b: 2c: - d: "cool" e: "new" - f: "free" g: "soon"
Testing
npm test