0.0.1 • Published 11 years ago

yamli v0.0.1

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

yamli

Yaml adds !include support to js-yaml.

Usage

foo.yaml

foo: !include bar.yaml

bar.yaml

bar: ~

example.js

var foo = yamli.load('foo.yaml')
console.log(foo)

Output:

{ foo: { bar: null } }

methods

yamli implements load, loadAll, safeLoad and safeLoadAll. All methods works like js-yaml except they expects a filename instead of an yaml string as first argument.

install

Using npm do:

$ npm install yaml

license

MIT