代码生成

Mustache

多语言支持

javascript

依赖

npm install mustache --save

使用

var Mustache = require('mustache');

var view = {
  title: "Joe",
  calc: function () {
    return 2 + 4;
  }
};

var output = Mustache.render("{{title}} spends {{calc}}", view);

模板语法

mustache.5open in new window

Last Updated:
Contributors: mcs