https://github.com/anzerr/json.to.yaml
json to yaml format
https://github.com/anzerr/json.to.yaml
json nodejs transform util yaml
Last synced: about 2 months ago
JSON representation
json to yaml format
- Host: GitHub
- URL: https://github.com/anzerr/json.to.yaml
- Owner: anzerr
- License: mit
- Created: 2018-12-13T12:50:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-21T16:12:00.000Z (over 4 years ago)
- Last Synced: 2025-10-06T07:52:53.145Z (9 months ago)
- Topics: json, nodejs, transform, util, yaml
- Language: JavaScript
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### `Intro`

Convert JSON to YAML
#### `Install`
``` bash
npm install --save git+https://github.com/anzerr/json.to.yaml.git
npm install --save @anzerr/json.to.yaml
```
### `Example`
``` javascript
const YAML = require('./index.js');
YAML.stringify({
foo: 'bar',
baz: ['qux','quxx']
});
```