zkochan / load-yaml-file

Read and parse a YAML file

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

Related

About

Read and parse a YAML file


Languages

Language:JavaScript 100.0%