Files
pole-book/server/node_modules/load-yaml-file
..
2025-05-08 23:43:47 +02:00
2025-05-08 23:43:47 +02:00
2025-05-08 23:43:47 +02:00
2025-05-08 23:43:47 +02:00
2025-05-08 23:43:47 +02: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.