2.1.0 • Published 3 years ago

read-yaml-file v2.1.0

Weekly downloads
100,257
License
MIT
Repository
github
Last release
3 years ago

read-yaml-file

Read and parse a YAML file

npm version

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

License

MIT © Zoltan Kochan


This package was forked from load-yaml-file