Mustachejs
を使用した例を探していますNodejs
これが私の例ですが、機能していません。Mustache
未定義です。マスターブランチのMustachejsを使用しています。
var sys = require('sys');
var m = require("./mustache");
var view = {
title: "Joe",
calc: function() {
return 2 + 4;
}
};
var template = "{{title}} spends {{calc}}";
var html = Mustache().to_html(template, view);
sys.puts(html);