read-metadata
v1.0.0
Published
Load a JSON or YAML metadata file as an object
Downloads
59,441
Keywords
Readme
read-metadata
Load a JSON or YAML metadata file and return it as an object.
Install
npm install read-metadata
Usage
It handles both JSON and YAML and will return a parsed object.
var read = require('read-metadata');
read('path/to/metadata.json', function(err, data){
console.log(data);
});
API
read(path, callback)
Takes a path to the metadata file. The callback will be called with fn(err, result)
.
read.sync(path)
Load a metafile syncronously.