1.0.0 • Published 3 years ago

cfn-template-yaml-to-js v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

cfn-template-yaml-to-js

CircleCI Coverage Status semantic-release Commitizen friendly npm version

Converts AWS CloudFormation templates written in yaml directly to JS object expressions.

Note: block literals will be converted to dedent`...` tagged template literals; you will need to import dedent or dedent-js into the file using them.

Disclaimer

I wrote this package hastily, so it's possible it won't work on some templates. Feel free to open an issue if you run into any problems.

Usage

npm i -g cfn-template-yaml-to-js

CLI

# read from file, print to stdout

cfn-template-yaml-to-js template.yaml

# read from file, output to file

cfn-template-yaml-to-js template.yaml > file.js

# read from stdin, print to stdout

cat template.yaml | cfn-template-yaml-to-js