1 个稳定版本
1.0.0 | 2019 年 11 月 29 日 |
---|
#549 在 模板引擎
9KB
52 代码行
Handlebars CLI
将模板 JSON 属性转换为 CLI 中的 Handlebars 模板。
安装
您可以使用 Cargo 轻松安装。
cargo install handlebars-cli
您也可以在克隆出的此存储库版本中执行简单的 cargo build --release
命令来获取二进制文件(只需稳定的 Rust 即可)。
用法
$ handlebars-cli --help
handlebars-cli — Template JSON properties into Handlebars templates from the CLI.
USAGE:
handlebars-cli <JSON> <TEMPLATE>
handlebars-cli --help
PARAMETERS:
JSON: A set of valid JSON to use as properties to interpolate into the provided template file.
TEMPLATE: A path to a valid Handlebars template.
FLAGS:
--help: Prints this usage text.
示例
$ echo "Hello {{name.first}} {{name.last}}!" > template.hbs
$ handlebars-cli '{ "name": { "first": "Foo", "last": "Bar" }}' template.hbs
Hello Foo Bar!
许可证
许可协议:MIT 许可证(《LICENSE》或http://opensource.org/licenses/MIT)。
依赖项
~3–4MB
~85K SLoC