0.0.1 • Published 10 years ago

load-metadata v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
10 years ago

Build Status

load-metadata

Load a JSON or YAML metadata file and return it as an object.

Install

npm install load-metadata

Usage

It handles both JSON and YAML and will return a parsed object.

var load = require('load-metadata');

load('path/to/metadata.json', function(err, data){
    console.log(data);
});

API

load(path, callback)

Takes a path to the metadata file. The callback will be called with fn(err, result).

load.sync(path)

Load a metafile syncronously.