load-yaml-file
Read and parse a YAML file.
Last updated 5 years ago by linusu .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install load-yaml-file 
SYNC missed versions from official npm registry.

Load YAML file

Read and parse a YAML file.

Installation

npm install --save load-yaml-file

Usage

import { loadYamlFile } from 'load-yaml-file'

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

Sync

import { loadYamlFileSync } from 'load-yaml-file'

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

API

loadYamlFile(path)

  • path (string | Buffer | URL, required)
  • returns Promise<unknown> - a promise for the parsed YAML

loadYamlFileSync(path)

  • path (string | Buffer | URL, required)
  • returns unknown - the parsed YAML

Related

Current Tags

  • 1.0.0                                ...           latest (5 years ago)

4 Versions

  • 1.0.0                                ...           5 years ago
  • 0.2.0                                ...           7 years ago
  • 0.1.1                                ...           7 years ago
  • 0.1.0                                ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (3)
Dev Dependencies (3)

Copyright 2013 - present © cnpmjs.org | Home |