Files
ry.kazcloud.dev/node_modules/load-yaml-file
..
2026-02-16 16:37:35 -05:00
2026-02-16 16:37:35 -05:00
2026-02-16 16:37:35 -05:00
2026-02-16 16:37:35 -05:00
2026-02-16 16:37:35 -05:00
2026-02-16 16:37:35 -05:00

Load YAML file

Read and parse a YAML file.

Installation

npm install --save load-yaml-file

Usage

const loadYamlFile = require('load-yaml-file')

loadYamlFile('foo.yml').then(data => {
  console.log(data)
  //=> {foo: true}
})

API

loadYamlFile(filepath)

Returns a promise for the parsed YAML.

loadYamlFile.sync(filepath)

Returns the parsed YAML.