0.8.5 • Published 6 years ago

booben-metadata v0.8.5

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

Metadata reading and validation for Booben

Installation

npm install --save-dev booben-metadata

CLI validator

validate-booben-meta path/to/dir

API usage

const co = require('co');
const { gatherMetadata } = require('booben-metadata');

co(function* () {
  const meta = yield gatherMetadata('path/to/dir');
  // Do something with metadata
}).catch(err => {
  // Deal with error
});