read-yaml-file
v2.1.0
Published
Read and parse a YAML file
Downloads
11,427,761
Readme
read-yaml-file
Read and parse a YAML file
Installation
<npm|yarn|pnpm> add read-yaml-file
Usage
const readYamlFile = require('read-yaml-file')
readYamlFile('foo.yml').then(data => {
console.log(data)
//=> {foo: true}
})
API
readYamlFile(filepath)
Returns a promise for the parsed YAML.
readYamlFile.sync(filepath)
Returns the parsed YAML.
Related
- write-yaml-file - Stringify and write YAML to a file atomically
License
This package was forked from load-yaml-file