0.1.0 • Published 5 years ago

@cfn2/read-template v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

@cfn2/read-template

Read templates of CloudFormation.

Installation

npm i @cfn2/read-template

Usage

const { readTemplate } = require('@cfn2/read-template');

readTemplate('path/to/template-file', (err, template) => {
});

readTemplate(path, callback)

  • path
    • A path to read a template.
  • callback(err, template)
    • A callback which is called when parsing of a template is finished, or an error occurs.
    • If the template is YAML, abbreviated syntax is expanded.

License

MIT